Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/3.x' into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
lee-to committed Feb 8, 2025
2 parents 053c975 + a448fca commit 890b2a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/UI/dist/assets/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/UI/resources/css/components/forms.css
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ input[type='number'] {

/* Form Error */
.form-error {
@apply !mt-0 text-3xs text-red-600 dark:text-red-500;
@apply col-span-12 !mt-0 text-3xs text-red-600 dark:text-red-500;
}

/* Form Switcher */
Expand Down
2 changes: 1 addition & 1 deletion src/UI/src/Fields/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public function getComponent(): ComponentContract
? Column::make()->columnSpan($this->verticalValueSpan)
/** @var Column $default */
/** @phpstan-ignore-next-line */
: $default->columnSpan($this->verticalValueSpan) : null,
: $default->columnSpan($this->verticalValueSpan)->customAttributes(['data-validation-wrapper' => true]) : null,
),
)
->when(
Expand Down

0 comments on commit 890b2a3

Please sign in to comment.