1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/templates/components/gh-psm-tags-input.hbs
Kevin Ansfield 92931f7190
Upgraded ember-power-* addons (#1459)
no issue

- bump deps
- adjust usage for breaking changes... 
  - https://github.com/cibernox/ember-power-select/blob/master/CHANGELOG.md#300-beta1
  - https://github.com/cibernox/ember-basic-dropdown/blob/master/CHANGELOG.md#200-beta3
  - https://github.com/cibernox/ember-power-datepicker/blob/master/CHANGELOG.md#070
- update overridden component and template files to match latest addon code
  - switch to class syntax w/decorators
  - adjust for angle bracket syntax
2020-01-15 13:53:51 +00:00

13 lines
361 B
Handlebars

<GhTokenInput
@extra={{hash
tokenComponent="gh-token-input/tag-token"
}}
@onChange={{action "updateTags"}}
@onCreate={{action "createTag"}}
@options={{this.availableTags}}
@renderInPlace={{true}}
@selected={{this.post.tags}}
@showCreateWhen={{action "hideCreateOptionOnMatchingTag"}}
@triggerId={{this.triggerId}}
/>