mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
11 lines
300 B
JavaScript
11 lines
300 B
JavaScript
|
import ModalComponent from 'ghost-admin/components/modals/base';
|
||
|
import {reads} from 'ember-computed';
|
||
|
|
||
|
export default ModalComponent.extend({
|
||
|
title: reads('model.title'),
|
||
|
message: reads('model.message'),
|
||
|
warnings: reads('model.warnings'),
|
||
|
|
||
|
'data-test-theme-warnings-modal': true
|
||
|
});
|