Skip to content

Commit a0ef5b8

Browse files
authored
[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]>
1 parent 96e2c65 commit a0ef5b8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

zeppelin-web-angular/src/app/pages/workspace/notebook/action-bar/action-bar.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ export class NotebookActionBarComponent extends MessageListenersManager implemen
115115
this.activatedExtension = 'hide';
116116
} else {
117117
this.activatedExtension = extension;
118+
if (extension === 'interpreter') {
119+
this.messageService.getInterpreterBindings(this.note.id);
120+
}
118121
}
119122
this.activatedExtensionChange.emit(this.activatedExtension);
120123
}

0 commit comments

Comments
 (0)