fd8250adf9
* fix issue with model not reloading on href-to previously tried to fix after upgrade. * replace with normalizednamepsace and setup for testing * add the same functionality to the switch namespace link * meep, wrong branch * wow it's friday, correct branch * add changelog for upgrade, didn't do earlier. * another friday move * correct change to changelog for ember upgrade * remove and make another pr * remove href-to dep and add comment
19 lines
489 B
Handlebars
19 lines
489 B
Handlebars
<a
|
|
href={{this.namespaceLink}}
|
|
class={{concat "is-block " class}}
|
|
data-test-namespace-link={{this.normalizedNamespace}}
|
|
>
|
|
{{#if (has-block)}}
|
|
{{yield}}
|
|
{{else}}
|
|
<div class="level is-mobile">
|
|
<span class="level-left">{{this.namespaceDisplay}}</span>
|
|
<span class="level-right">
|
|
<button type="button" class="button is-ghost icon">
|
|
<Chevron @isButton={{true}} class="has-text-grey" />
|
|
</button>
|
|
</span>
|
|
</div>
|
|
{{/if}}
|
|
</a>
|