Skip to content

Commit

Permalink
Fix navigation entry not passing the XML validation
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen committed Jan 29, 2022
1 parent e8b1446 commit b8a2057
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ The First run wizard can be customized to meet specific design goals, or to chan

<navigations>
<navigation>
<id>firstrunwizard-about</id>
<id>firstrunwizard_about</id>
<name>About</name>
<route></route>
<order>5</order>
<route>files.view.index</route>
<icon>info.svg</icon>
<order>5</order>
<type>settings</type>
</navigation>
</navigations>
Expand Down
2 changes: 1 addition & 1 deletion js/about.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
document.addEventListener('DOMContentLoaded', function() {
var aboutEntry = document.querySelector('#expanddiv li[data-id="firstrunwizard-about"] a');
var aboutEntry = document.querySelector('#expanddiv li[data-id="firstrunwizard_about"] a');
if (aboutEntry) {
aboutEntry.addEventListener('click', function (event) {
event.stopPropagation();
Expand Down

0 comments on commit b8a2057

Please sign in to comment.