fix: use correct i18n key for comment placeholder in queue tab
Some checks failed
CI / Check / Test (push) Has been cancelled
Some checks failed
CI / Check / Test (push) Has been cancelled
This commit is contained in:
@@ -228,7 +228,7 @@ function QueueTab() {
|
|||||||
</div>
|
</div>
|
||||||
<Textarea
|
<Textarea
|
||||||
className="mt-2"
|
className="mt-2"
|
||||||
placeholder={t("diary.commentPlaceholder")}
|
placeholder={t("logReview.commentPlaceholder")}
|
||||||
value={comments[entry.id] ?? ""}
|
value={comments[entry.id] ?? ""}
|
||||||
onChange={(e) => setComments((p) => ({ ...p, [entry.id]: e.target.value }))}
|
onChange={(e) => setComments((p) => ({ ...p, [entry.id]: e.target.value }))}
|
||||||
rows={2}
|
rows={2}
|
||||||
|
|||||||
Reference in New Issue
Block a user