fix: rename useBaseActions with useWsBaseListActions

This commit is contained in:
Ramesh Mane
2026-02-20 10:35:32 +00:00
parent e82a00fa94
commit 2abdc4f34b
5 changed files with 9 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ const props = defineProps<{
// Get actions from provider
const { onRename, onToggleStarred, onDuplicate, onOpenErd, onOpenSettings, onDelete, onUpdateColor, onSelect } =
useBaseActionsOrThrow()
useWsBaseListActionsOrThrow()
const { isUIAllowed } = useRoles()
const { $e } = useNuxtApp()

View File

@@ -20,7 +20,7 @@ const { isUIAllowed } = useRoles()
const { isMobileMode } = useGlobal()
// Get reorder action from provider
const { onReorder } = useBaseActionsOrThrow()
const { onReorder } = useWsBaseListActionsOrThrow()
const gridRef = useTemplateRef('gridRef')
const dragging = ref(false)

View File

@@ -26,7 +26,7 @@ const { $e } = useNuxtApp()
const closeModal = () => {
visible.value = false
}
const { dialogState } = useProvideBaseActions(closeModal)
const { dialogState } = useProvideWsBaseListActions(closeModal)
const searchInputRef = ref<HTMLInputElement>()