chore(nc-gui): lint

This commit is contained in:
Ramesh Mane
2026-01-22 10:31:54 +00:00
parent eb8debad43
commit b980d95e42
16 changed files with 779 additions and 480 deletions

View File

@@ -9,14 +9,17 @@ defineProps<{
</script>
<template>
<div role="button" class="nc-base-view-all-table-btn" :class="{
disabled,
'loading cursor-wait': isLoading,
'cursor-pointer': !isLoading,
}">
<div
role="button"
class="nc-base-view-all-table-btn"
:class="{
disabled,
'loading cursor-wait': isLoading,
'cursor-pointer': !isLoading,
}"
>
<div class="icon-wrapper">
<a-skeleton-avatar v-if="isLoading" active shape="square"
class="!h-full !w-full !children:(rounded-md w-8 h-8)" />
<a-skeleton-avatar v-if="isLoading" active shape="square" class="!h-full !w-full !children:(rounded-md w-8 h-8)" />
<slot v-else name="icon">
<GeneralIcon v-if="icon" :icon="icon" />
</slot>