From 3dd0492f91422c8248691ac9d3f5de6d37278721 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 27 Jul 2023 12:42:49 +0200 Subject: [PATCH 1/4] fix(FormGroup): `required` star display --- src/runtime/app.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/app.config.ts b/src/runtime/app.config.ts index 653f028914..265606bf2a 100644 --- a/src/runtime/app.config.ts +++ b/src/runtime/app.config.ts @@ -420,7 +420,8 @@ const formGroup = { label: { wrapper: 'flex content-center items-center justify-between', base: 'block font-medium text-gray-700 dark:text-gray-200', - required: 'after:content-[\'*\'] after:ms-0.5 after:text-red-500 dark:after:text-red-400' + // eslint-disable-next-line quotes + required: `after:content-['*'] after:ms-0.5 after:text-red-500 dark:after:text-red-400` }, size: { '2xs': 'text-xs', From 58e3958390e0f94bd5398c524f65b53a0d8d837f Mon Sep 17 00:00:00 2001 From: Larra Su Date: Thu, 27 Jul 2023 18:43:30 +0800 Subject: [PATCH 2/4] docs(Skeleton): fix usage example (#452) --- docs/content/7.layout/3.skeleton.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/7.layout/3.skeleton.md b/docs/content/7.layout/3.skeleton.md index b4c614cdd2..1c93244218 100644 --- a/docs/content/7.layout/3.skeleton.md +++ b/docs/content/7.layout/3.skeleton.md @@ -18,7 +18,7 @@ Use to show a placeholder while content is loading. ```vue