mirror of
https://github.com/danbulant/Mangades
synced 2026-07-06 11:30:46 +00:00
fix select all
This commit is contained in:
parent
e2df1b923d
commit
b772eda4d1
2 changed files with 3 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -2,6 +2,6 @@
|
||||||
/public/build/
|
/public/build/
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/.routify
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
pnpm-lock.yaml
|
pnpm-lock.yaml
|
||||||
|
/.routify/
|
||||||
|
|
|
||||||
|
|
@ -169,7 +169,7 @@
|
||||||
|
|
||||||
function selectAll() {
|
function selectAll() {
|
||||||
chapters.then(res => {
|
chapters.then(res => {
|
||||||
var chapters = res.results;
|
var chapters = res.data;
|
||||||
if(arraysEqual(selected, chapters)) {
|
if(arraysEqual(selected, chapters)) {
|
||||||
selected = [];
|
selected = [];
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue