|
14 | 14 | </template> |
15 | 15 | <NcActionInput v-model="filters.serialNumber" |
16 | 16 | :label="t('libresign', 'Serial Number')" |
17 | | - @update:value="onFilterChange"> |
| 17 | + @update:modelValue="onFilterChange"> |
18 | 18 | <template #icon> |
19 | 19 | <NcIconSvgWrapper :path="mdiMagnify" :size="20" /> |
20 | 20 | </template> |
21 | 21 | </NcActionInput> |
22 | 22 |
|
23 | 23 | <NcActionInput v-model="filters.owner" |
24 | 24 | :label="t('libresign', 'Owner')" |
25 | | - @update:value="onFilterChange"> |
| 25 | + @update:modelValue="onFilterChange"> |
26 | 26 | <template #icon> |
27 | 27 | <NcIconSvgWrapper :path="mdiAccount" :size="20" /> |
28 | 28 | </template> |
|
191 | 191 | </td> |
192 | 192 | <td class="crl-table__cell--frozen-right"> |
193 | 193 | <NcButton v-if="entry.status === 'issued'" |
194 | | - type="error" |
| 194 | + variant="error" |
195 | 195 | @click="openRevokeDialog(entry)"> |
196 | 196 | {{ t('libresign', 'Revoke') }} |
197 | 197 | </NcButton> |
|
232 | 232 | <NcButton @click="closeCaWarningDialog"> |
233 | 233 | {{ t('libresign', 'Cancel') }} |
234 | 234 | </NcButton> |
235 | | - <NcButton type="error" @click="proceedToRevokeDialog"> |
| 235 | + <NcButton variant="error" @click="proceedToRevokeDialog"> |
236 | 236 | {{ t('libresign', 'Yes, revoke CA') }} |
237 | 237 | </NcButton> |
238 | 238 | </div> |
|
241 | 241 |
|
242 | 242 | <NcDialog v-if="revokeDialog.open" |
243 | 243 | :name="t('libresign', 'Revoke Certificate')" |
244 | | - :can-close="!revokeDialog.loading" |
| 244 | + :no-close="revokeDialog.loading" |
245 | 245 | @update:open="closeRevokeDialog"> |
246 | 246 | <div class="revoke-dialog"> |
247 | 247 | <NcNoteCard type="warning"> |
|
277 | 277 | @click="closeRevokeDialog"> |
278 | 278 | {{ t('libresign', 'Cancel') }} |
279 | 279 | </NcButton> |
280 | | - <NcButton type="error" |
| 280 | + <NcButton variant="error" |
281 | 281 | :disabled="revokeDialog.loading" |
282 | 282 | @click="confirmRevoke"> |
283 | 283 | <template #icon> |
|
0 commit comments