Compare commits

..

3 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ function toggleSelectAll(checked: boolean) {
</NCheckbox>
</div>
<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
v-for="item in columns"
:key="item.key"
@@ -100,7 +100,6 @@ function toggleSelectAll(checked: boolean) {
</div>
<ButtonIcon
:disabled="!item.checked"
text
:focusable="false"
:tooltip-content="$t(tooltipRecord[item.fixed!])"
@click="handleFixed(item)"

View File

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