Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mnlipp/jgrapes-osgi
Browse files Browse the repository at this point in the history
  • Loading branch information
mnlipp committed Oct 8, 2023
2 parents aa5aeb8 + d4bcce0 commit 0a9dcce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ JGConsole.registerConletFunction(
return;
}
let view = conlet.element().querySelector(":scope .jgrapes-osgi-logviewer-view");
if (view === 0) {
if (view == null) {
return;
}
let api = getApi(view);
Expand All @@ -153,7 +153,7 @@ JGConsole.registerConletFunction(
return
}
let view = conlet.element().querySelector(":scope .jgrapes-osgi-logviewer-view");
if (view == 0) {
if (view == null) {
return;
}
let api = getApi(view);
Expand Down

0 comments on commit 0a9dcce

Please sign in to comment.