chore(acc): do not disable sync items

This commit is contained in:
oguzhankoral
2025-08-04 17:40:54 +03:00
parent 9e5c1d3c4d
commit 331d6a5e06
2 changed files with 0 additions and 6 deletions
@@ -6,8 +6,6 @@
<div class="flex flex-col justify-between">
<button
class="flex flex-row justify-between items-center"
:disabled="disabled"
:class="{ 'opacity-50 cursor-not-allowed': disabled }"
@click="$emit('select', folderContent)"
>
<div class="text-body-xs text-foreground">
@@ -52,7 +50,6 @@ defineProps<{
folderContent: AccItem
loading: boolean
selected: boolean
disabled: boolean
}>()
defineEmits<{
@@ -8,9 +8,6 @@
:folder-content="item"
:loading="loading"
:selected="item.id === selectedFolderContent?.id"
:disabled="
syncItems.find((si) => si.accFileLineageUrn === item.id) !== undefined
"
@select="(i) => $emit('select', i)"
></ProjectPageAccFileItem>
</div>