mirror of
https://github.com/documize/community.git
synced 2025-07-24 15:49:44 +02:00
1. Popups should close on subsequent trigger clicks 2. @attrs should be quoted as oper linter warnings.
19 lines
518 B
Handlebars
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}}
|