mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-10 10:17:58 +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
12 lines
417 B
TypeScript
12 lines
417 B
TypeScript
import LinkComponent from '@ember/routing/link-component';
|
|
// @ts-ignore: Ignore import of compiled template
|
|
import template from '../templates/components/nav-link';
|
|
// import { computed } from '@ember/object';
|
|
import { tagName, layout } from '@ember-decorators/component';
|
|
|
|
@tagName('li')
|
|
@layout(template)
|
|
export default class NavLink extends LinkComponent {
|
|
attributeBindings = ['data-toggle', 'data-target'];
|
|
}
|