mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-08 12:09:43 +03:00
14 lines
354 B
JavaScript
14 lines
354 B
JavaScript
|
import Component from 'ember-component';
|
||
|
import {alias} from 'ember-computed';
|
||
|
import injectService from 'ember-service/inject';
|
||
|
|
||
|
export default Component.extend({
|
||
|
tagName: 'section',
|
||
|
|
||
|
classNames: ['gh-upgrade-notification'],
|
||
|
|
||
|
upgradeNotification: injectService('upgrade-notification'),
|
||
|
|
||
|
message: alias('upgradeNotification.content')
|
||
|
});
|