aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-17 07:50:16 +0000
committerMario <mario@mariovavti.com>2021-06-17 07:50:16 +0000
commit12d7d1c3f028f2faa2329752a29f2814f624224b (patch)
tree8c0597663ace746737908b5659171fa6437b8fb3 /view/tpl
parent34ca2cddd4d70e08c6351ef0f72ea5e2a6c9b056 (diff)
downloadvolse-hubzilla-12d7d1c3f028f2faa2329752a29f2814f624224b.tar.gz
volse-hubzilla-12d7d1c3f028f2faa2329752a29f2814f624224b.tar.bz2
volse-hubzilla-12d7d1c3f028f2faa2329752a29f2814f624224b.zip
fix wrong variable
Diffstat (limited to 'view/tpl')
-rw-r--r--view/tpl/hq_controls.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/hq_controls.tpl b/view/tpl/hq_controls.tpl
index f3860a949..f46b7b298 100644
--- a/view/tpl/hq_controls.tpl
+++ b/view/tpl/hq_controls.tpl
@@ -1,6 +1,6 @@
<div class="d-grid gap-2 mb-3">
{{foreach $entries as $e}}
- <button id="{{$e.id}}" class="{{$e.class}} rounded-circle" type="{{$e.type}}" title="{{$e.label}}"{{if $extra}} {{$extra}}{{/if}}>
+ <button id="{{$e.id}}" class="{{$e.class}} rounded-circle" type="{{$e.type}}" title="{{$e.label}}"{{if $e.extra}} {{$e.extra}}{{/if}}>
{{if $e.icon}}<i class="fa fa-{{$e.icon}}"></i>{{/if}}
</button>
{{/foreach}}