File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { property, state } from "lit/decorators.js";
5
5
6
6
import "keyword-mark-element/lib/keyword-mark.js" ;
7
7
8
- import { getReplayLink } from "./pageutils" ;
8
+ import { getPageDateTS , getReplayLink } from "./pageutils" ;
9
9
10
10
import { wrapCss } from "./misc" ;
11
11
import type { URLResource } from "./types" ;
@@ -192,7 +192,7 @@ class PageEntry extends LitElement {
192
192
193
193
render ( ) {
194
194
const p = this . page ! ;
195
- const date = this . page ! . date ;
195
+ const { date } = getPageDateTS ( p ) ;
196
196
197
197
const hasSize = typeof p . size === "number" ;
198
198
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ class Pages extends LitElement {
303
303
continue ;
304
304
}
305
305
306
- if ( ! this . showAllPages && ! isSeed ) {
306
+ if ( ! this . showAllPages && this . hasExtraPages && ! this . query && ! isSeed ) {
307
307
continue ;
308
308
}
309
309
You can’t perform that action at this time.
0 commit comments