diff --git a/frontend/src/components/Icons/ArrowUpRightIcon.vue b/frontend/src/components/Icons/ArrowUpRightIcon.vue new file mode 100644 index 00000000..865d6261 --- /dev/null +++ b/frontend/src/components/Icons/ArrowUpRightIcon.vue @@ -0,0 +1,16 @@ + diff --git a/frontend/src/components/SectionFields.vue b/frontend/src/components/SectionFields.vue index 3aae41c7..d6e7ca7a 100644 --- a/frontend/src/components/SectionFields.vue +++ b/frontend/src/components/SectionFields.vue @@ -21,7 +21,10 @@ ].includes(field.type) " class="form-control" - :class="{ '[&_input]:text-gray-500': field.type === 'date' && !data[field.name] }" + :class="{ + '[&_input]:text-gray-500': + field.type === 'date' && !data[field.name], + }" :type="field.type" :value="data[field.name]" :placeholder="field.placeholder" @@ -63,9 +66,9 @@ @change.stop="emit('update', field.name, $event.target.value)" /> - @@ -73,7 +76,7 @@