mirror of
https://github.com/codex-team/codex.docs.git
synced 2025-08-09 07:25:21 +02:00
linter fix
This commit is contained in:
parent
8e5148f7cf
commit
3b2daca652
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ class PageOrder {
|
||||||
const found2 = this.order.indexOf(currentPageId);
|
const found2 = this.order.indexOf(currentPageId);
|
||||||
|
|
||||||
if (found1 === -1 || found2 === -1) {
|
if (found1 === -1 || found2 === -1) {
|
||||||
return
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const margin = found1 < found2 ? 1 : 0;
|
const margin = found1 < found2 ? 1 : 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue