diff --git a/frontend/src/views/domain/ngx_conf/LocationEditor.vue b/frontend/src/views/domain/ngx_conf/LocationEditor.vue index b836ea8a..507ce341 100644 --- a/frontend/src/views/domain/ngx_conf/LocationEditor.vue +++ b/frontend/src/views/domain/ngx_conf/LocationEditor.vue @@ -2,7 +2,8 @@ import CodeEditor from '@/components/CodeEditor' import {useGettext} from 'vue3-gettext' import {reactive, ref} from 'vue' -import {DeleteOutlined} from '@ant-design/icons-vue' +import {DeleteOutlined, HolderOutlined} from '@ant-design/icons-vue' +import draggable from 'vuedraggable' const {$gettext} = useGettext() @@ -11,7 +12,7 @@ const props = defineProps(['locations']) let location = reactive({ comments: '', path: '', - content: '', + content: '' }) const adding = ref(false) @@ -38,34 +39,46 @@ function remove(index: number) {