mirror of https://github.com/rancher/ui.git
16 lines
367 B
JavaScript
16 lines
367 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import LazyIcon from 'shared/mixins/lazy-icon';
|
|
|
|
export default Component.extend(LazyIcon, {
|
|
scope: service(),
|
|
layout,
|
|
classNames: ['namespace-app'],
|
|
latestVersion: null,
|
|
|
|
didRender() {
|
|
this.initAppIcon();
|
|
},
|
|
});
|