Skip to content

Commit

Permalink
Merge pull request #134 from Hedreon/authors-patch
Browse files Browse the repository at this point in the history
Move author selection box up
  • Loading branch information
TheRolfFR authored Jul 16, 2024
2 parents e16cd54 + 0f36b8a commit 56eddb3
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions pages/addon/addon-form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
<!-- LEFT PART : INPUT -->
<div class="col pb-0">
<div class="text-h5">{{ $root.lang().addons.general.title }}</div>

<!-- Addon name -->
<v-text-field
required
Expand All @@ -37,6 +38,14 @@
:hint="$root.lang().addons.general.name.hint"
/>

<!-- Addon authors selection -->
<user-select
:users="users"
v-model="submittedForm.authors"
:label="$root.lang().addons.general.authors.label"
:hint="$root.lang().addons.general.authors.hint"
/>

<div class="text-h5 mb-3" v-if="!$vuetify.breakpoint.smAndDown">
{{ $root.lang().addons.images.title }}
</div>
Expand Down Expand Up @@ -163,14 +172,6 @@
:hint="$root.lang().addons.general.slug.hint"
/>

<!-- Addon authors selection -->
<user-select
:users="users"
v-model="submittedForm.authors"
:label="$root.lang().addons.general.authors.label"
:hint="$root.lang().addons.general.authors.hint"
/>

<div class="text-h5">{{ $root.lang().addons.options.title }}</div>

<div class="container">
Expand Down

0 comments on commit 56eddb3

Please sign in to comment.