Lines Matching +full:- +full:alert
2 <b-row>
3 <b-col xl="10">
4 <!-- Operation in progress alert -->
5 <alert v-if="isOperationInProgress" variant="info" class="mb-5">
7 {{ $t('pageFirmware.alert.operationInProgress') }}
9 </alert>
10 <!-- Power off server warning alert -->
11 <alert v-else-if="!isServerOff" variant="warning" class="mb-5">
12 <p class="mb-0">
13 {{ $t('pageFirmware.alert.serverMustBePoweredOffTo') }}
15 <ul class="m-0">
17 {{ $t('pageFirmware.alert.switchRunningAndBackupImages') }}
20 {{ $t('pageFirmware.alert.updateFirmware') }}
24 <b-link to="/operations/server-power-operations">
25 {{ $t('pageFirmware.alert.viewServerPowerOperations') }}
26 </b-link>
28 </alert>
29 </b-col>
30 </b-row>
34 import Alert from '@/components/Global/Alert';
35 import { useI18n } from 'vue-i18n';
38 components: { Alert },