1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/app/components/gh-upgrade-notification.js
Vijay Kandy 96f1b6342d Added upgrade notification component to About page. (#102)
- Picked some fixes https://github.com/TryGhost/Ghost/pull/5670/files
- Destructured Ember properties
- Removed unused imports and fixed unit test errors.
2016-07-15 16:58:35 -06:00

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')
});