diff --git a/openid-connect-server/src/main/webapp/resources/js/admin.js b/openid-connect-server/src/main/webapp/resources/js/admin.js index 7fd58e26f..93b0dec5b 100644 --- a/openid-connect-server/src/main/webapp/resources/js/admin.js +++ b/openid-connect-server/src/main/webapp/resources/js/admin.js @@ -683,7 +683,7 @@ app = new AppRouter(); // grab all hashed URLs and send them through the app router instead - $('a[href*="#"').on('click', function(event) { + $('a[href*="#"]').on('click', function(event) { event.preventDefault(); app.navigate(this.hash.slice(1), {trigger: true}); });