Skip to content

Commit 4248112

Browse files
committed
handle no data
1 parent 85b66e2 commit 4248112

File tree

6 files changed

+24
-5700
lines changed

6 files changed

+24
-5700
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ yarn-error.log*
4949
next-env.d.ts
5050

5151
bun.lockb
52-
package-lock.json
52+
package-lock.json

CHANGELOG.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,28 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5-
### [0.2.20](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.19...v0.2.20) (2024-07-02)
5+
### [0.2.21](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.20...v0.2.21) (2024-07-04)
6+
7+
### Features
8+
9+
- **emails:** display in details-table and export ([4d6b002](https://github.com/drip-art/Comfy-Registry-PR/commit/4d6b0023871b3469d702cd45f5702627798a1408))
10+
- **github-email:** fetcher ([f76889f](https://github.com/drip-art/Comfy-Registry-PR/commit/f76889f62af44546a8433d13fac56b3dec3be133))
611

12+
### Bug Fixes
13+
14+
- **authors:** enable updating ([737eee5](https://github.com/drip-art/Comfy-Registry-PR/commit/737eee5cddb109fcfaaaaa10b133eea12562bad8))
15+
- **authors:** index with email and githubId ([369a5ad](https://github.com/drip-art/Comfy-Registry-PR/commit/369a5ad254811dc09738ad7308b1a396c5490ffd))
16+
- **main:** ignore lock ([787e60e](https://github.com/drip-art/Comfy-Registry-PR/commit/787e60ec93f760b18713a50e664b6fb984a24038))
17+
- **pullStatus:** fill email as empty string if null ([9ad257e](https://github.com/drip-art/Comfy-Registry-PR/commit/9ad257e30d3d493c07309c7b02141cb1da7f3ce3))
18+
19+
### [0.2.20](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.19...v0.2.20) (2024-07-02)
720

821
### Bug Fixes
922

10-
* **comment-authors:** add ([847b14d](https://github.com/drip-art/Comfy-Registry-PR/commit/847b14d19b1c6bde1bb967c7ff8e7f44d93ac4eb))
11-
* **comment-authors:** add ([d5ec4f1](https://github.com/drip-art/Comfy-Registry-PR/commit/d5ec4f1199d57b494e77c9613cc3789112be09e9))
12-
* **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([fe8aac6](https://github.com/drip-art/Comfy-Registry-PR/commit/fe8aac61d587c366a85f74d53b1572f0c74c0791))
13-
* **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([1cc72d5](https://github.com/drip-art/Comfy-Registry-PR/commit/1cc72d5127de0e7b0d3412706e4a6f0102a558e1))
23+
- **comment-authors:** add ([847b14d](https://github.com/drip-art/Comfy-Registry-PR/commit/847b14d19b1c6bde1bb967c7ff8e7f44d93ac4eb))
24+
- **comment-authors:** add ([d5ec4f1](https://github.com/drip-art/Comfy-Registry-PR/commit/d5ec4f1199d57b494e77c9613cc3789112be09e9))
25+
- **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([fe8aac6](https://github.com/drip-art/Comfy-Registry-PR/commit/fe8aac61d587c366a85f74d53b1572f0c74c0791))
26+
- **misc:** 2024-06-28 meeting changes [@haohao](https://github.com/haohao) ([1cc72d5](https://github.com/drip-art/Comfy-Registry-PR/commit/1cc72d5127de0e7b0d3412706e4a6f0102a558e1))
1427

1528
### [0.2.19](https://github.com/drip-art/Comfy-Registry-PR/compare/v0.2.18...v0.2.19) (2024-06-28)
1629

app/(dashboard)/PullsStatusTable.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ import { SaveButton } from "./SaveButton";
66
export function PullsStatusTable({ name, pullsStatus }: { name?: string; pullsStatus: PullsStatus }) {
77
const csv = csvFormat(pullsStatus);
88
const rows = csvParse(csv);
9-
const header = Object.keys(rows[0]) as (keyof (typeof pullsStatus)[number])[];
9+
const first = rows[0]
10+
if(!first ) return <>NO DATA</>;
11+
const header = Object.keys(first) as (keyof (typeof pullsStatus)[number])[];
1012
const filename = `${new Date().toISOString().slice(0, 10)}-${name || "export"}.csv`;
1113
// cosnt data = yaml.pasre(yaml.stringify(r))
1214
// const body = r.

bun.lockb

-323 KB
Binary file not shown.

0 commit comments

Comments
 (0)