🔧 Fixed wanted comics table data source

This commit is contained in:
2022-11-08 10:05:30 -08:00
parent e3cea24615
commit 1e39daeda2
2 changed files with 3 additions and 2 deletions

View File

@@ -414,6 +414,7 @@ pre {
width: 100%; width: 100%;
padding: 25px 0 15px 0; padding: 25px 0 15px 0;
position: sticky; position: sticky;
z-index:9999;
background: #fffffc; background: #fffffc;
top: 50px; top: 50px;
} }

View File

@@ -105,7 +105,7 @@ export const WantedComics = (props): ReactElement => {
size: pageSize, size: pageSize,
from: pageSize * pageIndex + 1, from: pageSize * pageIndex + 1,
}, },
type: "all", type: "wanted",
trigger: "wantedComicsPage", trigger: "wantedComicsPage",
}, },
), ),
@@ -137,7 +137,7 @@ export const WantedComics = (props): ReactElement => {
size: pageSize, size: pageSize,
from, from,
}, },
type: "all", type: "wanted",
trigger: "wantedComicsPage" trigger: "wantedComicsPage"
}, },
), ),