This is an automated email from the ASF dual-hosted git repository.
chanholee pushed a commit to branch branch-0.12
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.12 by this push:
new 5b754ee581 [ZEPPELIN-6304] Changes to interpreter bindings are not
reflected when reopening the binding settings
5b754ee581 is described below
commit 5b754ee5814a1cb9c6a16df9c051bb025c71656b
Author: YONGJAE LEE(이용재) <[email protected]>
AuthorDate: Tue Sep 2 23:44:59 2025 +0900
[ZEPPELIN-6304] Changes to interpreter bindings are not reflected when
reopening the binding settings
### What is this PR for?
**Description:**
Changing the interpreter for a paragraph did not update the binding list
area when clicking the `Interpreter Binding` button in the **action bar**.
Although the server had the correct values, the client did not call the update
function.
**[Appropriate action - Classic UI]**
https://github.com/user-attachments/assets/f2bbb602-056f-4f09-8015-e0268233f246
**[AS-IS]**
https://github.com/user-attachments/assets/38b41567-eccd-47b6-942d-afa603d86dff
**[TO-BE]**
https://github.com/user-attachments/assets/b9959eb8-5408-49fb-a9e5-15a725ca048a
### What type of PR is it?
Bug Fix
### Todos
### What is the Jira issue?
* [[ZEPPELIN-6304](https://issues.apache.org/jira/browse/ZEPPELIN-6304)]
### How should this be tested?
### Screenshots (if appropriate)
### Questions:
* Does the license files need to update? N
* Is there breaking changes for older versions? N
* Does this needs documentation? N
Closes #5061 from dididy/fix/ZEPPELIN-6304.
Signed-off-by: ChanHo Lee <[email protected]>
(cherry picked from commit a0ef5b8096e49b7a7705374544b0efece3f02228)
Signed-off-by: ChanHo Lee <[email protected]>
---
.../app/pages/workspace/notebook/action-bar/action-bar.component.ts | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts
b/zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts
index 3dfa8c5871..878648c0c8 100644
---
a/zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts
+++
b/zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts
@@ -115,6 +115,9 @@ export class NotebookActionBarComponent extends
MessageListenersManager implemen
this.activatedExtension = 'hide';
} else {
this.activatedExtension = extension;
+ if (extension === 'interpreter') {
+ this.messageService.getInterpreterBindings(this.note.id);
+ }
}
this.activatedExtensionChange.emit(this.activatedExtension);
}