Skip to content

Commit d95f43a

Browse files
authored
[ZEPPELIN-6164] Fix the problem that the dep or property in the last …
…table row will not be saved in interpreter editing page ### What is this PR for? Fix the problem that the dep or property in the last table row will not be saved in interpreter editing page ### What type of PR is it? Bug Fix ### Todos ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-6164 ### How should this be tested? Compiled and tested manually. ### Screenshots (if appropriate) ### Questions: * Does the license files need to update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Closes apache#4909 from paul8263/ui-interpreter-editing-issue. Signed-off-by: Philipp Dallig <[email protected]>
1 parent 7afcf3e commit d95f43a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

zeppelin-web-angular/src/app/pages/workspace/interpreter/item/item.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ export class InterpreterItemComponent extends DestroyHookComponent implements On
8181
name: key
8282
};
8383
});
84+
this.addProperties()
8485
formData.properties = properties;
85-
86+
this.addDependence()
8687
formData.dependencies.forEach(e => {
8788
e.exclusions = e.exclusions.split(',').filter(s => s !== '');
8889
});

0 commit comments

Comments
 (0)