Skip to content

Commit

Permalink
fix(FormGroup): required star display
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jul 27, 2023
1 parent 9a73c5f commit 3dd0492
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 3dd0492

Please sign in to comment.