Skip to content
Snippets Groups Projects
Commit 019640da authored by Neuber, Eugen Ramon's avatar Neuber, Eugen Ramon :speech_balloon:
Browse files

Fix test for "page not found"

See issue #33
parent 66f52864
No related branches found
No related tags found
No related merge requests found
Pipeline #18313 passed with warnings
...@@ -885,7 +885,7 @@ export class AppShell extends ScopedElementsMixin(AdapterLitElement) { ...@@ -885,7 +885,7 @@ export class AppShell extends ScopedElementsMixin(AdapterLitElement) {
</aside> </aside>
<main> <main>
<div style="display: ${this.description === null ? 'none' : 'block'};"> <div style="display: ${! this.metadata[this.activeView] ? 'block' : 'none'};">
<h2>${i18n.t('page-not-found')}</h2> <h2>${i18n.t('page-not-found')}</h2>
<p>${i18n.t('choose-from-menu')}</p> <p>${i18n.t('choose-from-menu')}</p>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment