mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
12 lines
270 B
JavaScript
12 lines
270 B
JavaScript
|
import Component from '@glimmer/component';
|
||
|
import {tracked} from '@glimmer/tracking';
|
||
|
|
||
|
export default class SelectRoleModal extends Component {
|
||
|
@tracked role;
|
||
|
|
||
|
constructor() {
|
||
|
super(...arguments);
|
||
|
this.role = this.args.data.currentRole;
|
||
|
}
|
||
|
}
|