From 34ba8a4548ac6b7230208b30a09040a400ff7272 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 7 Feb 2026 15:55:44 +0000 Subject: [PATCH] Improve error messages for bulk operations Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- frontend/templates/files.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/templates/files.html b/frontend/templates/files.html index 09c3795f..bd9acec7 100644 --- a/frontend/templates/files.html +++ b/frontend/templates/files.html @@ -304,13 +304,13 @@ 0 files selected
- - -
@@ -583,7 +583,7 @@ function bulkDelete() { const fileIds = getSelectedFileIds(); if (fileIds.length === 0) { - alert('No files selected'); + alert('Please select files to delete'); return; } @@ -619,7 +619,7 @@ function bulkReprocess() { const fileIds = getSelectedFileIds(); if (fileIds.length === 0) { - alert('No files selected'); + alert('Please select files to reprocess'); return; }