Skip to content

Commit

Permalink
iva: Listen to events from primary bar in iva-app #TASK-7216 #TASK-7100
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjuanes committed Nov 20, 2024
1 parent 2bbc6df commit c77f019
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/sites/iva/iva-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2126,7 +2126,12 @@ class IvaApp extends LitElement {
.version="${this.version || ""}"
.loggedIn="${this.isLoggedIn()}"
.opencgaSession="${this.opencgaSession}"
.config="${this.config}">
.config="${this.config}"
@logout="${() => this.logout()}"
@changeTool="${e => this.changeTool(e.detail.value)}"
@changeApp="${e => this.onChangeApp(e.detail.event, e.detail.toggle)}"
@studySelect="${e => this.onStudySelect(e.detail.event, e.detail.study)}"
@jobSelected="${e => this.onJobSelected(e)}">
</layout-primary-bar>
<div class="d-flex flex-nowrap">
<layout-sidebar
Expand All @@ -2147,7 +2152,7 @@ class IvaApp extends LitElement {
` : this.renderTools()}
</div>
<layout-footer
.version="${this.version}"
.version="${this.version || ""}"
.host="${this.host}"
.config="${this.config}">
</layout-footer>
Expand Down

0 comments on commit c77f019

Please sign in to comment.