From 394b7e279cc8c5119a929604c63e3f5df7c55fd4 Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Sun, 18 Jan 2026 13:52:01 +0100 Subject: [PATCH] Update file types: Add .log, remove .txt - Support .json and .log file formats for load from disk - Better suited for log filtering expression prototyping - Remove .txt as it's not commonly used for JSON data --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index c779b0b..fd0ac41 100644 --- a/src/App.js +++ b/src/App.js @@ -119,7 +119,7 @@ function App() { const loadFromDisk = () => { const fileInput = document.createElement('input'); fileInput.type = 'file'; - fileInput.accept = '.json,.txt'; + fileInput.accept = '.json,.log'; fileInput.onchange = (event) => { const file = event.target.files[0]; if (file) {