Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TomJKing committed Dec 10, 2024
1 parent ae2c222 commit ae160d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
--directory-icon-width: 24px;
--item-expander-btn-width: 40px;

overflow: auto auto;
overflow: auto;
max-height: 70vh;
margin-bottom: 1em;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export class NestedNavigation {
const label = li.querySelector("label");
if (label?.firstChild?.textContent !== null) {
this.displaySelected(
isSelected ? "" : label?.firstChild?.textContent?.trim() ?? "",
isSelected ? "" : (label?.firstChild?.textContent?.trim() ?? ""),
);
} else {
this.displaySelected("");
Expand Down

0 comments on commit ae160d2

Please sign in to comment.