diff --git a/web/src/components/file-extra.tsx b/web/src/components/file-extra.tsx index 2f605de..cb6ac22 100644 --- a/web/src/components/file-extra.tsx +++ b/web/src/components/file-extra.tsx @@ -95,7 +95,9 @@ function FilePath({ file }: { file: TelegramFile }) { -
{file.localPath}
+
+ {file.localPath} +
); @@ -148,7 +150,11 @@ export default function FileExtra({ file, rowHeight }: FileExtraProps) { if (rowHeight === "s") { return ( - {file.fileName ? : } + {file.fileName ? ( + + ) : ( + + )} ); }