Add optional chaining for querySelector result in Files.vue
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -630,7 +630,7 @@
|
|||||||
});
|
});
|
||||||
// 為 DataTable tbody 加入 .scrollbar 選擇器
|
// 為 DataTable tbody 加入 .scrollbar 選擇器
|
||||||
const tbodyElement = document.querySelector('.p-datatable-tbody');
|
const tbodyElement = document.querySelector('.p-datatable-tbody');
|
||||||
tbodyElement.classList.add('scrollbar');
|
tbodyElement?.classList.add('scrollbar');
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
Reference in New Issue
Block a user