Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
danharrin authored and github-actions[bot] committed Dec 13, 2023
1 parent 0225f62 commit 6dea1d1
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions packages/forms/resources/views/component-container.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,36 +9,36 @@
:x-data="$isRoot ? '{}' : null"
:x-on:expand-concealing-component.window="
$isRoot ? ('
if ($event.detail.livewireId !== ' . Js::from($this->getId()) . ') {
return
}
if ($event.detail.livewireId !== ' . Js::from($this->getId()) . ') {
return
}
$nextTick(() => {
error = $el.querySelector(\'[data-validation-error]\')
$nextTick(() => {
error = $el.querySelector(\'[data-validation-error]\')
if (! error) {
return
}
if (! error) {
return
}
elementToExpand = error
elementToExpand = error
while (elementToExpand) {
elementToExpand.dispatchEvent(new CustomEvent(\'expand\'))
while (elementToExpand) {
elementToExpand.dispatchEvent(new CustomEvent(\'expand\'))
elementToExpand = elementToExpand.parentNode
}
elementToExpand = elementToExpand.parentNode
}
setTimeout(
() =>
error.scrollIntoView({
behavior: \'smooth\',
block: \'start\',
inline: \'start\',
}),
200,
)
})
') : null
setTimeout(
() =>
error.scrollIntoView({
behavior: \'smooth\',
block: \'start\',
inline: \'start\',
}),
200,
)
})
') : null
"
:default="$getColumns('default')"
:sm="$getColumns('sm')"
Expand Down

0 comments on commit 6dea1d1

Please sign in to comment.