This is an automated email from the ASF dual-hosted git repository.
pdallig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push:
new d95f43a358 [ZEPPELIN-6164] Fix the problem that the dep or property in
the last …
d95f43a358 is described below
commit d95f43a3581c11b2673b5a04431f40556d9fe8ab
Author: Paul Zhang <[email protected]>
AuthorDate: Thu Apr 10 19:10:30 2025 +0800
[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 #4909 from paul8263/ui-interpreter-editing-issue.
Signed-off-by: Philipp Dallig <[email protected]>
---
.../src/app/pages/workspace/interpreter/item/item.component.ts | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/zeppelin-web-angular/src/app/pages/workspace/interpreter/item/item.component.ts
b/zeppelin-web-angular/src/app/pages/workspace/interpreter/item/item.component.ts
index f23905d3ce..4094e42557 100644
---
a/zeppelin-web-angular/src/app/pages/workspace/interpreter/item/item.component.ts
+++
b/zeppelin-web-angular/src/app/pages/workspace/interpreter/item/item.component.ts
@@ -81,8 +81,9 @@ export class InterpreterItemComponent extends
DestroyHookComponent implements On
name: key
};
});
+ this.addProperties()
formData.properties = properties;
-
+ this.addDependence()
formData.dependencies.forEach(e => {
e.exclusions = e.exclusions.split(',').filter(s => s !== '');
});