Skip to content

Commit 24ba9ba

Browse files
committed
Fix: Remove button in library not showing
1 parent 24b6494 commit 24ba9ba

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
##### 🚀 New Features
1010

11-
- Preliminary support for the `EPUB` format (Alpha)
11+
- Preliminary support for the `EPUB` format (Alpha) [`24b6494`](https://github.com/ollm/OpenComic/commit/24b6494c00f35dcb5fcea4f2e4cb713a8a130cd9)
1212

1313
##### 🐛 Bug Fixes
1414

15+
- Remove button in library not showing
16+
1517
## [v1.0.0-beta.4](https://github.com/ollm/OpenComic/releases/tag/v1.0.0-beta.4) (17-10-2023)
1618

1719
##### 🚀 New Features

scripts/dom.js

+2
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ async function loadIndexPage(animation = true, path = false, content = false, ke
428428
}
429429

430430
handlebarsContext.comics = comics;
431+
handlebarsContext.comicsIndex = true;
431432
handlebarsContext.comicsReadingProgress = false;
432433
dom.setCurrentPageVars('index');
433434

@@ -456,6 +457,7 @@ async function loadIndexPage(animation = true, path = false, content = false, ke
456457
indexPathControl(path, mainPath);
457458

458459
handlebarsContext.comics = [];
460+
handlebarsContext.comicsIndex = false;
459461
handlebarsContext.comicsDeep2 = path.replace(new RegExp('^\s*'+pregQuote(mainPathR)), '').split(p.sep).length >= 2 ? true : false;
460462
dom.setCurrentPageVars('browsing');
461463

0 commit comments

Comments
 (0)