We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this was coused by b496815
there are two if statements to render the InviteCode . i think the first one should be deleted
if
{{ if $action.InviteCode }} <div style="margin-top:30px;margin-bottom:30px"> <table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0"> <tr> <td align="center"> <table align="center" cellpadding="0" cellspacing="0" style="padding:0;text-align:center"> <tr> <td style="display:inline-block;border-radius:3px;font-family:Consolas, monaco, monospace;font-size:28px;text-align:center;letter-spacing:8px;color:#555;background-color:#eee;padding:20px"> {{ $action.InviteCode }} </td> </tr> </table> </td> </tr> </table> </div> {{ end }} {{safe "<![endif]-->" }}
<div> {{ if $action.Button.Text }} <a href="{{ $action.Button.Link }}" class="button" style="{{ with $action.Button.Color }}background-color: {{ . }};{{ end }} {{ with $action.Button.TextColor }}color: {{ . }};{{ end }} width: {{$width}}px;" target="_blank"> {{ $action.Button.Text }} </a> {{end}} {{ if $action.InviteCode }} <span class="invite-code">{{ $action.InviteCode }}</span> {{end}} </div>
for any one looking for a temporary solution , just copy the flat.go or default.go , and delete the codes in first code block.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this was coused by b496815
there are two
if
statements to render the InviteCode . i think the first one should be deletedfor any one looking for a temporary solution , just copy the flat.go or default.go , and delete the codes in first code block.
The text was updated successfully, but these errors were encountered: