mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-11 10:46:52 +00:00

* Module consolidation on datahub-web - clean up to some OS logic from previous update - initial implementation of virtual assistant * Fix accidental change to datahub user module license
13 lines
473 B
Handlebars
13 lines
473 B
Handlebars
{{#if @options.linkModels}}
|
|
<LinkTo class="foxie__link-button" @route={{@options.linkTo}} @models={{@options.linkModels}}>
|
|
{{@options.text}}
|
|
</LinkTo>
|
|
{{else}}
|
|
{{!-- Needed to be completely separated since even having the parameter defined as undefined will throw an error
|
|
because of how ember handles LinkTo
|
|
--}}
|
|
<LinkTo class="foxie__link-button" @route={{@options.linkTo}} @model={{@options.linkModel}}>
|
|
{{@options.text}}
|
|
</LinkTo>
|
|
{{/if}}
|