1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

fix: insert files via add row option

This commit is contained in:
2020-08-13 12:42:19 +02:00
parent 2f1dfdc654
commit 3c6e818ba0
5 changed files with 59 additions and 10 deletions

View File

@ -47,7 +47,9 @@
@hide="hideEditorModal"
>
<template :slot="'header'">
{{ $t('word.edit') }} "{{ editingField }}"
<div class="d-flex">
<i class="mdi mdi-24px mdi-playlist-edit mr-1" /> {{ $t('word.edit') }} "{{ editingField }}"
</div>
</template>
<div :slot="'body'">
<div class="mb-2">
@ -71,7 +73,9 @@
@hide="hideEditorModal"
>
<template :slot="'header'">
{{ $t('word.edit') }} "{{ editingField }}"
<div class="d-flex">
<i class="mdi mdi-24px mdi-playlist-edit mr-1" /> {{ $t('word.edit') }} "{{ editingField }}"
</div>
</template>
<div :slot="'body'">
<div class="mb-2">
@ -299,7 +303,7 @@ export default {
}
// Inline editable fields
this.editingContent = this.$options.filters.typeFormat(this.originalContent, type);
this.editingContent = this.$options.filters.typeFormat(this.originalContent, type, this.fieldPrecision(field));
this.$nextTick(() => { // Focus on input
event.target.blur();