mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
10 lines
217 B
JavaScript
10 lines
217 B
JavaScript
|
import Ember from 'ember';
|
||
|
import ModalComponent from 'ghost/components/modals/base';
|
||
|
|
||
|
const {computed} = Ember;
|
||
|
const {alias} = computed;
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
generatedHtml: alias('model')
|
||
|
});
|