From 11e31ce6fac96e2f5a31ecf29a470172e03e2bf3 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 7 May 2026 23:41:03 +0200 Subject: [PATCH] Feature: Add row-level removal button and update action buttons --- src/App.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 084986b..332144f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -631,6 +631,7 @@ export default function App() {
Path
Type
Size
+
Remove
{rows.length === 0 && ( @@ -639,15 +640,22 @@ export default function App() {
)} {rows.map((row) => ( -
toggleRowSelection(row)} - > +
{row.name}
{row.kind === "file" ? row.path : row.url}
{row.type}
{row.size}
+
+ +
))}
@@ -656,8 +664,6 @@ export default function App() { - -