feat(locales): Replace 'nodeGroupId' with 'groupId' in multiple language files for consistency

This commit is contained in:
web@ppanel
2025-01-08 23:13:32 +07:00
parent 70497af0aa
commit a4e9d5da59
79 changed files with 413 additions and 159 deletions
@@ -219,13 +219,13 @@ export default function SubscribeForm<T extends Record<string, any>>({
name='group_id'
render={({ field }) => (
<FormItem>
<FormLabel>{t('form.subscribeGroup')}</FormLabel>
<FormLabel>{t('form.groupId')}</FormLabel>
<FormControl>
<Combobox<number, false>
placeholder={t('form.selectSubscribeGroup')}
{...field}
onChange={(value) => {
form.setValue(field.name, value);
form.setValue(field.name, value || 0);
}}
options={group?.map((item) => ({
label: item.name,