portainer/app/edge/components/edit-edge-stack-form/editEdgeStackFormController.js

10 lines
196 B
JavaScript

export class EditEdgeStackFormController {
constructor() {
this.editorUpdate = this.editorUpdate.bind(this);
}
editorUpdate(cm) {
this.model.StackFileContent = cm.getValue();
}
}