From 0f9349f9209f6f03bafb5c1e543faaf3dcab51e1 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 17 Oct 2024 16:31:41 +0200 Subject: [PATCH] playground: consistent avatar urls --- playground/app/pages/components/alert.vue | 2 +- playground/app/pages/components/avatar.vue | 14 +++++++------- playground/app/pages/components/chip.vue | 2 +- playground/app/pages/components/context-menu.vue | 2 +- playground/app/pages/components/dropdown-menu.vue | 2 +- playground/app/pages/components/separator.vue | 4 ++-- playground/app/pages/components/tabs.vue | 2 +- playground/app/pages/components/toast.vue | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/playground/app/pages/components/alert.vue b/playground/app/pages/components/alert.vue index 240056e0..062042b1 100644 --- a/playground/app/pages/components/alert.vue +++ b/playground/app/pages/components/alert.vue @@ -27,7 +27,7 @@ const data = { - +
diff --git a/playground/app/pages/components/avatar.vue b/playground/app/pages/components/avatar.vue index 1592948b..ba3abe56 100644 --- a/playground/app/pages/components/avatar.vue +++ b/playground/app/pages/components/avatar.vue @@ -7,7 +7,7 @@ const sizes = Object.keys(theme.variants.size) as Array
- +
@@ -22,17 +22,17 @@ const sizes = Object.keys(theme.variants.size) as Array - + - - + +
- - - + + +
diff --git a/playground/app/pages/components/chip.vue b/playground/app/pages/components/chip.vue index 0d36106c..5e5087ee 100644 --- a/playground/app/pages/components/chip.vue +++ b/playground/app/pages/components/chip.vue @@ -31,7 +31,7 @@ const items = [{
- +
diff --git a/playground/app/pages/components/context-menu.vue b/playground/app/pages/components/context-menu.vue index bd65874c..6deed524 100644 --- a/playground/app/pages/components/context-menu.vue +++ b/playground/app/pages/components/context-menu.vue @@ -5,7 +5,7 @@ const items = [ [{ label: 'My account', avatar: { - src: 'https://avatars.githubusercontent.com/u/739984?v=4' + src: 'https://github.com/benjamincanac.png' } }], [{ diff --git a/playground/app/pages/components/dropdown-menu.vue b/playground/app/pages/components/dropdown-menu.vue index 5964c939..295f3cda 100644 --- a/playground/app/pages/components/dropdown-menu.vue +++ b/playground/app/pages/components/dropdown-menu.vue @@ -5,7 +5,7 @@ const items = [ [{ label: 'My account', avatar: { - src: 'https://avatars.githubusercontent.com/u/739984?v=4' + src: 'https://github.com/benjamincanac.png' }, type: 'label' as const }], diff --git a/playground/app/pages/components/separator.vue b/playground/app/pages/components/separator.vue index 66c21b3e..8f804482 100644 --- a/playground/app/pages/components/separator.vue +++ b/playground/app/pages/components/separator.vue @@ -15,7 +15,7 @@ @@ -25,7 +25,7 @@ - +
diff --git a/playground/app/pages/components/tabs.vue b/playground/app/pages/components/tabs.vue index af6a9b19..65e79010 100644 --- a/playground/app/pages/components/tabs.vue +++ b/playground/app/pages/components/tabs.vue @@ -14,7 +14,7 @@ const size = ref('md' as const) const items = [{ label: 'Tab1', avatar: { - src: 'https://avatars.githubusercontent.com/u/739984?v=4' + src: 'https://github.com/benjamincanac.png' }, content: 'This is the content shown for Tab1' }, { diff --git a/playground/app/pages/components/toast.vue b/playground/app/pages/components/toast.vue index 1b545509..89e48da8 100644 --- a/playground/app/pages/components/toast.vue +++ b/playground/app/pages/components/toast.vue @@ -30,13 +30,13 @@ const templates = (id: number) => [{ title: 'Toast', description: `This is the toast ${id}`, avatar: { - src: 'https://avatars.githubusercontent.com/u/739984?v=4' + src: 'https://github.com/benjamincanac.png' } }, { title: 'Toast', description: `This is the toast ${id}`, avatar: { - src: 'https://avatars.githubusercontent.com/u/739984?v=4' + src: 'https://github.com/benjamincanac.png' }, actions: [{ label: 'Action',