Don't consider the trailing / in pre-select tab mode

This commit is contained in:
Fabio Manganiello 2020-02-01 00:17:11 +01:00
parent b02b30656c
commit 8caa170676
1 changed files with 1 additions and 1 deletions

View File

@ -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];
}