feat: remove previous back button and add a switching validate/back button for better UX

This commit is contained in:
2026-01-19 14:56:59 +01:00
parent 7b53f8407c
commit 2c225f6821
8 changed files with 78 additions and 82 deletions

View File

@@ -42,16 +42,16 @@ public class ControlServer extends NanoHTTPD {
return downloadFile(Config.INPUT_JSON_NAME);
case "/output_json":
return viewFile(Config.OUPUT_JSON_NAME);
return viewFile(Config.OUTPUT_JSON_NAME);
case "/download_output_json":
return downloadFile(Config.OUPUT_JSON_NAME);
return downloadFile(Config.OUTPUT_JSON_NAME);
case "/output_csv":
return viewFile(Config.OUPUT_CSV_NAME);
return viewFile(Config.OUTPUT_CSV_NAME);
case "/download_output_csv":
return downloadFile(Config.OUPUT_CSV_NAME);
return downloadFile(Config.OUTPUT_CSV_NAME);
case "/":
case "/index.html":