ffddf3f8a6
Now defaults to 16 on both frontend and backend. Co-authored-by: techknowlogick <techknowlogick@gitea.io>
14 lines
466 B
Handlebars
14 lines
466 B
Handlebars
{{if .ctx.IsSigned}}
|
|
<div class="item action ui pointing top right select-reaction dropdown" data-action-url="{{ .ActionURL }}">
|
|
<a class="add-reaction">
|
|
{{svg "octicon-smiley"}}
|
|
</a>
|
|
<div class="menu">
|
|
<div class="header">{{ .ctx.i18n.Tr "repo.pick_reaction"}}</div>
|
|
<div class="divider"></div>
|
|
{{range $value := AllowedReactions}}
|
|
<div class="item reaction" data-content="{{$value}}">{{ReactionToEmoji $value}}</div>
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
{{end}}
|