1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

refactor(ui/editor): migrate code-editor to react [EE-4848] (#8257)

This commit is contained in:
Chaim Lev-Ari 2023-02-23 10:40:31 +05:30 committed by GitHub
parent 273a3f9a10
commit 5507b1e8c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 259 additions and 130 deletions

View file

@ -112,8 +112,8 @@ export class EdgeJobFormController {
this.formAction(this.formValues.method);
}
editorUpdate(cm) {
this.model.FileContent = cm.getValue();
editorUpdate(value) {
this.model.FileContent = value;
this.isEditorDirty = true;
}