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 7babca7 commit 79a20bdCopy full SHA for 79a20bd
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "yomikiru",
3
"productName": "Yomikiru",
4
- "version": "2.14.0",
+ "version": "2.14.1",
5
"description": "App to read manga / comic / epub offline on desktop",
6
"main": ".webpack/main",
7
"author": {
src/Components/EPubReaderSideList.tsx
@@ -439,7 +439,7 @@ const List = memo(
439
src: string;
440
index?: number;
441
}) => {
442
- const show = listShow[index] || true;
+ const show = index < 0 ? true : listShow[index];
443
return (
444
<li
445
className={`${src === currentChapterURL ? "current" : ""} ${depth === 2 ? "collapse" : ""} ${
0 commit comments