We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 485eb22 commit d3fa7c9Copy full SHA for d3fa7c9
frontend/src/ts/commandline/commandline.ts
@@ -740,7 +740,7 @@ const modal = new AnimatedModal({
740
741
const dataIndex = parseIntOptional(target?.getAttribute("data-index"));
742
743
- if (!dataIndex) return;
+ if (dataIndex === undefined) return;
744
745
lastHover = e.target as HTMLElement;
746
activeIndex = dataIndex;
@@ -752,7 +752,7 @@ const modal = new AnimatedModal({
752
753
754
755
756
757
const previous = activeIndex;
758
0 commit comments