1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 15:49:44 +02:00
documize/gui/app/templates/components/document/settings-category.hbs
McMatts c49707d160 Make popups close on doble-click + quote @size attrs
1. Popups should close on subsequent trigger clicks
2. @attrs should be quoted as oper linter warnings.
2019-05-28 10:59:48 +01:00

19 lines
518 B
Handlebars

{{layout/logo-heading
title="Categories"
desc="Assign one or more categories to help organize content within this space"
icon=constants.Icon.Category}}
{{#if categories}}
{{ui/ui-list-picker items=categories nameField="category" singleSelect=false}}
<Ui::UiSpacer @size="300" />
{{ui/ui-button
color=constants.Color.Green
icon=constants.Icon.Category
label=constants.Label.Save
light=true
onClick=(action "onSave")}}
{{else}}
<p class="color-green-700">This space has no categories yet</p>
{{/if}}