Skip to content

Commit

Permalink
Fix default variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogobbosouza committed Nov 22, 2020
1 parent fcf6df3 commit 8e06fd7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/editors/easymde.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:id="$id"
:label="$label"
:bind="$bind"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
:language="$language"
:showErrors="$showErrors"
:theme="$theme"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/editors/quill.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
type="hidden"
:id="$id"
:name="$name"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
/>

<div
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/editors/trix.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
type="hidden"
:id="$id"
:name="$name"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
/>

<trix-editor
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/pickers/flatpickr.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:label="$label"
:type="'text'"
:bind="$bind"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
:language="$language"
:showErrors="$showErrors"
:theme="$theme"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/pickers/pickr.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
type="hidden"
id="{{ $id }}-input"
:name="$name"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
/>

<div {{ $themeProvider->pickr->merge(['id' => $id]) }}></div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/pickers/pikaday.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:label="$label"
:type="'text'"
:bind="$bind"
:default="$slot->isEmpty() ? $default : $slot"
:default="$slot"
:language="$language"
:showErrors="$showErrors"
:theme="$theme"
Expand Down

0 comments on commit 8e06fd7

Please sign in to comment.