Skip to content

Commit

Permalink
disable query inputs when updating datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
oganm committed Oct 4, 2024
1 parent d1e12fe commit c66b392
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/SearchSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
</div>
<v-text-field
v-model="searchSettings.query"
:disabled="queryDisabled"
label="Search"
prepend-inner-icon="mdi-magnify"
outlined
Expand Down Expand Up @@ -98,6 +99,7 @@ export default {
taxon: Array,
annotations: Array,
technologyTypes: Array,
queryDisabled: Boolean,
platformDisabled: Boolean,
taxonDisabled: Boolean,
annotationDisabled: Boolean,
Expand Down
1 change: 1 addition & 0 deletions src/views/Browser.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<SearchSettings v-model="searchSettings"
class="py-3 px-3"
:taxon-disabled="loadingTaxa"
:query-disabled="loadingDatasets"
:annotation-disabled="loadingAnnotation"
:annotation-loading="loadingAnnotation"
:taxa-disabled="loadingTaxa"
Expand Down

0 comments on commit c66b392

Please sign in to comment.