From 8caa170676ad32f50681f33d32315ab55cac0325 Mon Sep 17 00:00:00 2001 From: Fabio Manganiello Date: Sat, 1 Feb 2020 00:17:11 +0100 Subject: [PATCH] Don't consider the trailing / in pre-select tab mode --- platypush/backend/http/static/js/application.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platypush/backend/http/static/js/application.js b/platypush/backend/http/static/js/application.js index ac2bf620..cff27088 100644 --- a/platypush/backend/http/static/js/application.js +++ b/platypush/backend/http/static/js/application.js @@ -24,7 +24,7 @@ window.vm = new Vue({ }, created: function() { - m = window.location.href.match('/#([a-zA-Z0-9._]+)$'); + m = window.location.href.match('#([a-zA-Z0-9._]+)$'); if (m) { this.selectedPlugin = m[1]; }