diff options
author | nick <69434290+lelboatz@users.noreply.github.com> | 2023-02-17 21:35:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 03:35:51 +0100 |
commit | 77c691651e72ba1569666d560f96af04bfde9a4e (patch) | |
tree | b1e0a8b416680a0fde0788bb1195c5eef52101ac /src/plugins | |
parent | e14ec96e214f60058155560717b01a553f58c2c1 (diff) | |
download | Vencord-77c691651e72ba1569666d560f96af04bfde9a4e.tar.gz Vencord-77c691651e72ba1569666d560f96af04bfde9a4e.tar.bz2 Vencord-77c691651e72ba1569666d560f96af04bfde9a4e.zip |
ReviewDB: Show edit instead of create review where applicable (#466)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/reviewDB/components/ReviewsView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/reviewDB/components/ReviewsView.tsx b/src/plugins/reviewDB/components/ReviewsView.tsx index 4852967..c62065f 100644 --- a/src/plugins/reviewDB/components/ReviewsView.tsx +++ b/src/plugins/reviewDB/components/ReviewsView.tsx @@ -32,6 +32,7 @@ export default function ReviewsView({ userId }: { userId: string; }) { fallbackValue: [], deps: [refetchCount], }); + const username = UserStore.getUser(userId)?.username ?? ""; const dirtyRefetch = () => setRefetchCount(refetchCount + 1); @@ -79,7 +80,7 @@ export default function ReviewsView({ userId }: { userId: string; }) { <textarea className={classes(Classes.textarea.replace("textarea", ""), "enter-comment")} // this produces something like '-_59yqs ...' but since no class exists with that name its fine - placeholder={"Review @" + UserStore.getUser(userId)?.username ?? ""} + placeholder={reviews?.some(r => r.senderdiscordid === UserStore.getCurrentUser().id) ? `Update review for @${username}` : `Review @${username}`} onKeyDown={onKeyPress} style={{ marginTop: "6px", |