From e53c2c14d3993ba680f4bcd1acad0551e09da7e0 Mon Sep 17 00:00:00 2001 From: axolotle Date: Tue, 19 Mar 2024 01:43:29 +0100 Subject: [PATCH] migration(bs5): font-weight-* to fw-* --- app/src/components/globals/FormField.vue | 2 +- app/src/components/globals/ReadOnlyField.vue | 2 +- app/src/views/_partials/HistoryConsole.vue | 2 +- app/src/views/app/AppInfo.vue | 8 ++++---- app/src/views/app/AppList.vue | 2 +- app/src/views/backup/BackupCreate.vue | 4 ++-- app/src/views/backup/BackupInfo.vue | 4 ++-- app/src/views/backup/BackupList.vue | 2 +- app/src/views/backup/BackupView.vue | 2 +- app/src/views/domain/DomainInfo.vue | 2 +- app/src/views/domain/DomainList.vue | 2 +- app/src/views/service/ServiceList.vue | 2 +- app/src/views/user/UserList.vue | 2 +- 13 files changed, 18 insertions(+), 18 deletions(-) diff --git a/app/src/components/globals/FormField.vue b/app/src/components/globals/FormField.vue index 18114508..16b58903 100644 --- a/app/src/components/globals/FormField.vue +++ b/app/src/components/globals/FormField.vue @@ -98,7 +98,7 @@ export default { const defaultAttrs = { 'label-cols-md': 4, 'label-cols-lg': 3, - 'label-class': ['font-weight-bold', 'py-0'], + 'label-class': ['fw-bold', 'py-0'], } if (!('label-cols' in attrs)) { for (const attr in defaultAttrs) { diff --git a/app/src/components/globals/ReadOnlyField.vue b/app/src/components/globals/ReadOnlyField.vue index 7948964e..1fedf952 100644 --- a/app/src/components/globals/ReadOnlyField.vue +++ b/app/src/components/globals/ReadOnlyField.vue @@ -1,6 +1,6 @@