Skip to content

Commit

Permalink
🎨: changing progress bar in FolderTopBar to be dismissible only whe…
Browse files Browse the repository at this point in the history
…n there are no running progress
  • Loading branch information
itisAliRH committed Sep 13, 2024
1 parent b728a49 commit 4b36af5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ async function onAddDatasetsFromHistory(selectedDatasets: SelectionItem[]) {
</div>
</div>

<BAlert v-model="progress" dismissible variant="info" class="mb-1">
<BAlert v-model="progress" :dismissible="progressStatus.runningCount === 0" variant="info" class="mb-1">
<ProgressBar
:loading="progressStatus.runningCount > 0"
:note="progressNote"
Expand Down

0 comments on commit 4b36af5

Please sign in to comment.