import { alias } from '@ember/object/computed'; import Component from '@ember/component'; import hbs from 'htmlbars-inline-precompile'; export default Component.extend({ key: null, mode: null, path: null, actionClass: null, title: alias('key.keyWithoutParent'), layout: hbs`
{{#if showPrefix}}
{{! need this to prevent a shift in the layout before we transition when saving }}
{{#if key.isCreating}}
{{key.initialParentKey}}
{{else}}
{{key.parentKey}}
{{/if}}
{{/if}}
{{/if}}
{{#if (eq mode "edit") }}
Edit
{{/if}}
{{title}}