fix: 삼성 브라우저 draggable workaround
This commit is contained in:
+38
-25
@@ -224,14 +224,16 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #item="{ element }">
|
<template #item="{ element }">
|
||||||
<div class="list-group-item">
|
<div class="list-group-item">
|
||||||
<i class="bi bi-list" />
|
<div class="priority_info">
|
||||||
{{ element.id }}
|
<i class="bi bi-list" />
|
||||||
<button
|
<span>{{ element.id }}</span>
|
||||||
|
<button
|
||||||
v-b-tooltip.hover="actionHelpText[element.id]"
|
v-b-tooltip.hover="actionHelpText[element.id]"
|
||||||
class="btn btn-sm float-right btn-secondary py-0 px-1"
|
class="btn btn-sm btn-secondary py-0 px-1"
|
||||||
>
|
>
|
||||||
<i class="bi bi-question-lg" />
|
<i class="bi bi-question-lg" />
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</draggable>
|
</draggable>
|
||||||
@@ -246,14 +248,16 @@
|
|||||||
>
|
>
|
||||||
<template #item="{ element }">
|
<template #item="{ element }">
|
||||||
<div class="list-group-item">
|
<div class="list-group-item">
|
||||||
<i class="bi bi-list" />
|
<div class="priority_info">
|
||||||
{{ element.id }}
|
<i class="bi bi-list" />
|
||||||
<button
|
<span>{{ element.id }}</span>
|
||||||
|
<button
|
||||||
v-b-tooltip.hover="actionHelpText[element.id]"
|
v-b-tooltip.hover="actionHelpText[element.id]"
|
||||||
class="btn btn-sm float-right btn-secondary py-0 px-1"
|
class="btn btn-sm btn-secondary py-0 px-1"
|
||||||
>
|
>
|
||||||
<i class="bi bi-question-lg" />
|
<i class="bi bi-question-lg" />
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</draggable>
|
</draggable>
|
||||||
@@ -300,14 +304,16 @@
|
|||||||
</template>
|
</template>
|
||||||
<template #item="{ element }">
|
<template #item="{ element }">
|
||||||
<div class="list-group-item">
|
<div class="list-group-item">
|
||||||
<i class="bi bi-list" />
|
<div class="priority_info">
|
||||||
{{ element.id }}
|
<i class="bi bi-list" />
|
||||||
<button
|
<span>{{ element.id }}</span>
|
||||||
|
<button
|
||||||
v-b-tooltip.hover="actionHelpText[element.id]"
|
v-b-tooltip.hover="actionHelpText[element.id]"
|
||||||
class="btn btn-sm float-right btn-secondary py-0 px-1"
|
class="btn btn-sm btn-secondary py-0 px-1"
|
||||||
>
|
>
|
||||||
<i class="bi bi-question-lg" />
|
<i class="bi bi-question-lg" />
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</draggable>
|
</draggable>
|
||||||
@@ -322,14 +328,16 @@
|
|||||||
>
|
>
|
||||||
<template #item="{ element }">
|
<template #item="{ element }">
|
||||||
<div class="list-group-item">
|
<div class="list-group-item">
|
||||||
<i class="bi bi-list" />
|
<div class="priority_info">
|
||||||
{{ element.id }}
|
<i class="bi bi-list" />
|
||||||
<button
|
<span>{{ element.id }}</span>
|
||||||
|
<button
|
||||||
v-b-tooltip.hover="actionHelpText[element.id]"
|
v-b-tooltip.hover="actionHelpText[element.id]"
|
||||||
class="btn btn-sm float-right btn-secondary py-0 px-1"
|
class="btn btn-sm btn-secondary py-0 px-1"
|
||||||
>
|
>
|
||||||
<i class="bi bi-question-lg" />
|
<i class="bi bi-question-lg" />
|
||||||
</button>
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</draggable>
|
</draggable>
|
||||||
@@ -391,7 +399,7 @@ import { unwrap } from "@util/unwrap";
|
|||||||
import { convertFormData } from "@util/convertFormData";
|
import { convertFormData } from "@util/convertFormData";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { NPCPriorityBtnHelpMessage } from "@/helpTexts";
|
import { NPCPriorityBtnHelpMessage } from "@/helpTexts";
|
||||||
import draggable from "vuedraggable";
|
import draggable from "vuedraggable-es";
|
||||||
import TopBackBar from "@/components/TopBackBar.vue";
|
import TopBackBar from "@/components/TopBackBar.vue";
|
||||||
import { convertIDArray } from "@util/convertIDArray";
|
import { convertIDArray } from "@util/convertIDArray";
|
||||||
import { useToast, BContainer } from "bootstrap-vue-next";
|
import { useToast, BContainer } from "bootstrap-vue-next";
|
||||||
@@ -722,4 +730,9 @@ async function submitGeneralPriority() {
|
|||||||
padding-right: 0;
|
padding-right: 0;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.priority_info{
|
||||||
|
display:grid;
|
||||||
|
grid-template-columns: 24px 1fr 24px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user