actions: cleanup actions-modal

This commit is contained in:
Jesper Møller Jensen
2022-09-01 14:25:51 +02:00
parent eb65f9d464
commit da256091d4

View File

@@ -4,7 +4,7 @@ import { customElement, property } from 'lit/decorators.js';
import { UmbActionService } from './actions.service';
import { UmbContextConsumerMixin } from '../../core/context';
import type { ManifestEntityAction } from '../../core/models';
import './shared/tree-action.element';
import './actions/tree-action.element';
@customElement('umb-actions-modal')
export class UmbActionsModal extends UmbContextConsumerMixin(LitElement) {
@@ -26,16 +26,6 @@ export class UmbActionsModal extends UmbContextConsumerMixin(LitElement) {
`,
];
private _actionService?: UmbActionService;
constructor() {
super();
this.consumeContext('umbActionService', (actionService: UmbActionService) => {
this._actionService = actionService;
});
}
@property()
name = '';