Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions resources/js/components/fieldtypes/grid/Stacked.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
<div
class="grid-stacked"
:class="{
'mt-12': !grid.fullScreenMode && hideDisplay,
'mt-6': !grid.fullScreenMode && !hideDisplay,
'mt-0': !allowFullscreen && hideDisplay,
'mt-4': !hideDisplay,
'mt-10': allowFullscreen,
}"
slot-scope="{}"
>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/components/publish/Field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
v-text="__(labelText)"
v-tooltip="{content: config.handle, delay: 500, autoHide: false}"
/>
<i class="required rtl:ml-1 ltr:mr-1" v-if="config.required">*</i>
<i class="required rtl:ml-1 ltr:mr-1" v-if="showLabelText && config.required">*</i>
<avatar v-if="isLocked" :user="lockingUser" class="w-4 rounded-full -mt-px rtl:mr-2 ltr:ml-2 rtl:ml-2 ltr:mr-2" v-tooltip="lockingUser.name" />
<span v-if="isReadOnly && !isTab && !isSection" class="text-gray-500 font-normal text-2xs rtl:ml-1 ltr:mr-1">
{{ isLocked ? __('Locked') : __('Read Only') }}
Expand Down