mirror of
https://github.com/hsjobeki/noogle.git
synced 2024-12-25 23:13:30 +03:00
Fix: website typo (#398)
This commit is contained in:
parent
82539d387b
commit
6cb081eac4
@ -15,8 +15,8 @@ import { Doc, data as raw } from "@/models/data";
|
||||
|
||||
// Show only functions with content.
|
||||
const data = raw;
|
||||
const emptyIdxs = raw
|
||||
.map((d, idx) => (d.content?.content ? false : idx))
|
||||
const emptyIdxs: number[] = raw
|
||||
.map((d, idx) => (d.content?.content ? 0 : idx))
|
||||
.filter(Boolean);
|
||||
|
||||
const date = new Date();
|
||||
|
Loading…
Reference in New Issue
Block a user