Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom asset field editor ux redesign #18577

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
move field markers after label
  • Loading branch information
cconard96 committed Jan 8, 2025
commit 9bbb52fc5c879428133d7c686ea5b7d68b92795f
2 changes: 1 addition & 1 deletion js/src/vue/CustomObject/FieldPreview/Field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<slot name="field_options"></slot>
<div :class="`form-field row flex-grow-1 m-1`">
<div class="col py-2">
<slot name="field_markers"></slot>
<slot name="field_label"></slot>
<slot name="field_markers"></slot>
</div>
<div v-if="is_active" class="col-auto btn-group shadow-none field-actions">
<button type="button" class="btn btn-ghost-secondary btn-sm edit-field" :title="__('Edit')">
Expand Down