Skip to content

Commit

Permalink
oops from dc8651d
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonvarga committed Nov 15, 2024
1 parent 7f59960 commit 89466b6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/CodeFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="code-fieldtype-container" :class="[themeClass, {'code-fullscreen': fullScreenMode }]">
<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen">
<div class="code-fieldtype-toolbar-fullscreen">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/GroupFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
>
<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen">
</publish-field-fullscreen-header>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/TableFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<div class="table-fieldtype-container" :class="{'table-fullscreen bg-white dark:bg-dark-700': fullScreenMode }">
<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen">
</publish-field-fullscreen-header>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/bard/BardFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen">
<div class="bard-fixed-toolbar border-0" v-if="!readOnly && showFixedToolbar">
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/fieldtypes/grid/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="fullScreenMode = false">
</publish-field-fullscreen-header>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen">
<div class="markdown-toolbar">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<publish-field-fullscreen-header
v-if="fullScreenMode"
:title="config.title"
:title="config.display"
:field-actions="fieldActions"
@close="toggleFullscreen"
/>
Expand Down

0 comments on commit 89466b6

Please sign in to comment.