Compare commits

..

3 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ function toggleSelectAll(checked: boolean) {
</NCheckbox> </NCheckbox>
</div> </div>
<NDivider class="!my-4px" /> <NDivider class="!my-4px" />
<VueDraggable v-model="columns" :animation="150" filter=".none_draggable"> <VueDraggable v-model="columns" :animation="150" filter=".none_draggable" class="max-h-[200px] overflow-y-auto">
<div <div
v-for="item in columns" v-for="item in columns"
:key="item.key" :key="item.key"
@@ -100,7 +100,6 @@ function toggleSelectAll(checked: boolean) {
</div> </div>
<ButtonIcon <ButtonIcon
:disabled="!item.checked" :disabled="!item.checked"
text
:focusable="false" :focusable="false"
:tooltip-content="$t(tooltipRecord[item.fixed!])" :tooltip-content="$t(tooltipRecord[item.fixed!])"
@click="handleFixed(item)" @click="handleFixed(item)"

View File

@@ -196,6 +196,7 @@ declare namespace App {
type RouterPushOptions = { type RouterPushOptions = {
query?: Record<string, string>; query?: Record<string, string>;
params?: Record<string, string>; params?: Record<string, string>;
force?: boolean;
}; };
/** The global header props */ /** The global header props */