@@ -69,14 +69,14 @@ export function CloudFileBrowserSkeleton({
{Array.from({ length: 8 }).map((_, i) => (
diff --git a/apps/web/src/features/studio/components/cloud-file-browser/FileGrid.tsx b/apps/web/src/features/studio/components/cloud-file-browser/FileGrid.tsx
index 146dc099c..650f5e6e8 100644
--- a/apps/web/src/features/studio/components/cloud-file-browser/FileGrid.tsx
+++ b/apps/web/src/features/studio/components/cloud-file-browser/FileGrid.tsx
@@ -48,7 +48,7 @@ export function FileGrid({
return (
diff --git a/apps/web/src/features/studio/components/cloud-file-browser/FileGridCard.tsx b/apps/web/src/features/studio/components/cloud-file-browser/FileGridCard.tsx
index 96de5b991..b0d2cbc69 100644
--- a/apps/web/src/features/studio/components/cloud-file-browser/FileGridCard.tsx
+++ b/apps/web/src/features/studio/components/cloud-file-browser/FileGridCard.tsx
@@ -15,9 +15,9 @@ export interface FileGridCardProps {
function FileTypeIcon({ type, size = 'md' }: { type: CloudFileNode['type']; size?: 'md' | 'lg' }) {
const cl = size === 'lg' ? 'w-8 h-8' : 'w-5 h-5';
- if (type === 'folder') return
;
+ if (type === 'folder') return
;
if (type === 'audio') return
;
- if (type === 'image') return
;
+ if (type === 'image') return
;
if (['document', 'archive', 'project'].includes(type)) {
return
;
}
@@ -41,12 +41,12 @@ export function FileGridCard({
className
)}
>
-
+
@@ -57,8 +57,8 @@ export function FileGridCard({
onClick(file)}
@@ -73,9 +73,9 @@ export function FileGridCard({
aria-label={selected ? 'Désélectionner' : 'Sélectionner'}
>
{selected ? (
-
+
) : (
-
+
)}
diff --git a/apps/web/src/features/studio/components/cloud-file-browser/FileTable.tsx b/apps/web/src/features/studio/components/cloud-file-browser/FileTable.tsx
index f25ca2993..2d0f34410 100644
--- a/apps/web/src/features/studio/components/cloud-file-browser/FileTable.tsx
+++ b/apps/web/src/features/studio/components/cloud-file-browser/FileTable.tsx
@@ -34,7 +34,7 @@ export function FileTable({
return (
@@ -45,31 +45,31 @@ export function FileTable({
onSort('name')}
>
Name
|
Tags |
onSort('size')}
>
Size
|
onSort('modified')}
>
Modified
@@ -94,7 +94,7 @@ export function FileTable({
|
|
No files match your filters.
|
diff --git a/apps/web/src/features/studio/components/cloud-file-browser/FileTableRow.tsx b/apps/web/src/features/studio/components/cloud-file-browser/FileTableRow.tsx
index c60217bbf..713ce5550 100644
--- a/apps/web/src/features/studio/components/cloud-file-browser/FileTableRow.tsx
+++ b/apps/web/src/features/studio/components/cloud-file-browser/FileTableRow.tsx
@@ -24,13 +24,13 @@ export interface FileTableRowProps {
}
function FileTypeIcon({ type }: { type: CloudFileNode['type'] }) {
- if (type === 'folder') return ;
- if (type === 'audio') return ;
- if (type === 'image') return ;
+ if (type === 'folder') return ;
+ if (type === 'audio') return ;
+ if (type === 'image') return ;
if (['document', 'archive', 'project'].includes(type)) {
- return ;
+ return ;
}
- return ;
+ return ;
}
export function FileTableRow({
@@ -45,28 +45,28 @@ export function FileTableRow({
return (
|
-
+
|
|
|
-
+
|
-
+
|
-
+
|
);
@@ -76,18 +76,18 @@ export function FileTableRow({
|
@@ -110,7 +110,7 @@ export function FileTableRow({
{file.tags?.map((t) => (
{t}
@@ -125,7 +125,7 @@ export function FileTableRow({
|