Skip to content
Snippets Groups Projects
Commit 9e6402a2 authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

feat: re-order form elements by usage

fixes #215
parent 125da929
No related branches found
No related tags found
No related merge requests found
...@@ -25,27 +25,6 @@ ...@@ -25,27 +25,6 @@
</template> </template>
</FormGroup> </FormGroup>
<FormGroup
:label="t('noteEditor.contributors')"
:errors="contributors.errors"
:is-saving="contributors.isSaving"
>
<ComboBoxSimple v-model="contributors.value" :choices="contributors.choices" />
</FormGroup>
<FormGroup :label="t('noteEditor.tags')" :errors="tags.errors" :is-saving="tags.isSaving">
<TagInput v-model="tags.value" />
</FormGroup>
<FormGroup
:label="t('noteEditor.image')"
:errors="imageId.errors"
:is-saving="imageId.isSaving"
custom-control
>
<ImagePicker v-model="imageId.value" class="tw-flex-none tw-w-min" />
</FormGroup>
<FormGroup <FormGroup
:label="t('noteEditor.summary')" :label="t('noteEditor.summary')"
:errors="summary.errors" :errors="summary.errors"
...@@ -81,6 +60,27 @@ ...@@ -81,6 +60,27 @@
/> />
</template> </template>
</FormGroup> </FormGroup>
<FormGroup
:label="t('noteEditor.image')"
:errors="imageId.errors"
:is-saving="imageId.isSaving"
custom-control
>
<ImagePicker v-model="imageId.value" class="tw-flex-none tw-w-min" />
</FormGroup>
<FormGroup
:label="t('noteEditor.contributors')"
:errors="contributors.errors"
:is-saving="contributors.isSaving"
>
<ComboBoxSimple v-model="contributors.value" :choices="contributors.choices" />
</FormGroup>
<FormGroup :label="t('noteEditor.tags')" :errors="tags.errors" :is-saving="tags.isSaving">
<TagInput v-model="tags.value" />
</FormGroup>
</FormTable> </FormTable>
</template> </template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment