Skip to content

Commit

Permalink
Change tab name
Browse files Browse the repository at this point in the history
  • Loading branch information
lehecht committed Jan 27, 2025
1 parent 6b43df9 commit db4486f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/resources/assets/js/mixins/largoContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ export default {
.then(() => this.sortingDirection = SORT_DIRECTION.DESCENDING);
},
handleOpenTab(tab) {
if (tab === "annotations" && !this.fetchedLabelCount) {
if (tab === "label-list" && !this.fetchedLabelCount) {
this.getLabelCount();
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/resources/views/labelList.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<sidebar-tab :disabled="isInRelabelStep" name="annotations" icon="list" title="Label list" class="sidebar__tab--nopad">
<sidebar-tab :disabled="isInRelabelStep" name="label-list" icon="list" title="Label list" class="sidebar__tab--nopad">
<label-list
:labels="labels"
v-on:select="handleSelectedLabel"
Expand Down

0 comments on commit db4486f

Please sign in to comment.