Fix 404s for overview page, semantic model tabs and add-on store (#2678)

Fixes #2665.

Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
pull/2682/head
Florian Hotze 2024-07-18 11:47:11 +02:00 committed by GitHub
parent 3d27333ba4
commit fce76c81fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -44,8 +44,9 @@ public class UIErrorPageServlet extends HttpServlet {
private static final long serialVersionUID = 6472170444750947727L;
private static final String INDEX_FILE = "/app/index.html";
private static final Set<String> VALID_ROUTE_SEGMENTS = Set.of("about", "analyzer", "developer", "home", "page",
"profile", "res", "settings", "setup-wizard");
private static final Set<String> VALID_ROUTE_SEGMENTS = Set.of("about", "addons", "analyzer", "developer",
"equipment", "home", "locations", "overview", "page", "profile", "properties", "res", "settings",
"setup-wizard");
private final Logger logger = LoggerFactory.getLogger(UIErrorPageServlet.class);