summaryrefslogtreecommitdiff
path: root/src/components/Global/LoadingBar.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Global/LoadingBar.vue')
-rw-r--r--src/components/Global/LoadingBar.vue11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/components/Global/LoadingBar.vue b/src/components/Global/LoadingBar.vue
index d972b869..ee333404 100644
--- a/src/components/Global/LoadingBar.vue
+++ b/src/components/Global/LoadingBar.vue
@@ -1,10 +1,11 @@
<template>
<transition name="fade">
- <b-progress
- v-if="!isLoadingComplete"
- :value="loadingIndicatorValue"
- height="0.4rem"
- />
+ <b-progress v-if="!isLoadingComplete" height="0.4rem">
+ <b-progress-bar
+ :value="loadingIndicatorValue"
+ :aria-label="$t('global.ariaLabel.progressBar')"
+ />
+ </b-progress>
</transition>
</template>