Rename nice id to Identifier in the ui

This commit is contained in:
Owen
2025-11-04 12:47:08 -08:00
committed by Pallavi Kumari
parent aeda85fcfb
commit ddc14d164e
3 changed files with 7 additions and 5 deletions

View File

@@ -320,11 +320,11 @@ export default function GeneralForm() {
name="niceId"
render={({ field }) => (
<FormItem>
<FormLabel>{t("niceId") || "Nice ID"}</FormLabel>
<FormLabel>{t("identifier")}</FormLabel>
<FormControl>
<Input
{...field}
placeholder="Enter Nice ID"
placeholder={t("enterIdentifier")}
className="flex-1"
/>
</FormControl>

View File

@@ -161,11 +161,11 @@ export default function GeneralPage() {
name="niceId"
render={({ field }) => (
<FormItem>
<FormLabel>{t("niceId") || "Nice ID"}</FormLabel>
<FormLabel>{t("identifier")}</FormLabel>
<FormControl>
<Input
{...field}
placeholder="Enter Nice ID"
placeholder={t("enterIdentifier")}
className="flex-1"
/>
</FormControl>