mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
11 lines
299 B
JavaScript
11 lines
299 B
JavaScript
import Component from '@glimmer/component';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class FullAttributionTable extends Component {
|
|
@service membersUtils;
|
|
|
|
static modalOptions = {
|
|
className: 'epm-modal fullscreen-modal-action fullscreen-modal-wide'
|
|
};
|
|
}
|