This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
huegasm/app/templates/components/modals/add-group-modal.hbs

14 lines
No EOL
500 B
Handlebars

{{#if isShowingAddGroupsModal}}
{{#modal-dialog close="close"
alignment="center"
translucentOverlay=true}}
{{light-group lightsData=lightsData activeLights=activeLights selectLight=(action 'selectLight') apiURL=apiURL}}
{{paper-input label="Group name" value=groupName max="32" max-errortext="The group name cannot exceed 32 characters"}}
<button {{action 'close'}}>Close</button>
<button {{action 'save'}} disabled={{saveDisabled}}>Save</button>
{{/modal-dialog}}
{{/if}}