From 970821446236c60ebe9bf0d600d2216b4c7fe8ec Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 12 Aug 2024 11:01:32 +0200 Subject: [PATCH] chore: refs #7283 drop array types --- src/components/ui/VnAvatar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/VnAvatar.vue b/src/components/ui/VnAvatar.vue index 05b161980..1deb105db 100644 --- a/src/components/ui/VnAvatar.vue +++ b/src/components/ui/VnAvatar.vue @@ -8,7 +8,7 @@ import { getCssVar } from 'quasar'; const $props = defineProps({ workerId: { type: Number, required: true }, description: { type: String, default: null }, - title: { type: [String], default: null }, + title: { type: String, default: null }, color: { type: String, default: null }, });