Settings Providers düzenlemesi
This commit is contained in:
parent
b766a9c409
commit
948c636fc2
2 changed files with 2 additions and 2 deletions
|
|
@ -29,7 +29,7 @@ export interface DynamicSettingDto {
|
|||
dataType?: string
|
||||
selectOptions?: Record<string, string>
|
||||
formName?: string
|
||||
providers?: string[]
|
||||
providers?: string
|
||||
isEditable?: boolean
|
||||
}
|
||||
export interface MainGroupedSettingDto {
|
||||
|
|
|
|||
|
|
@ -175,7 +175,7 @@ const Settings = () => {
|
|||
{subGroup.settings.map((setting) => (
|
||||
<FormItem
|
||||
key={setting.code}
|
||||
label={translate('::' + setting.name) + ' (' + setting.providers + ')'}
|
||||
label={translate('::' + setting.name) + ' (' + setting.providers?.replaceAll('|', ', ') + ')'}
|
||||
extra={
|
||||
<Tooltip title={translate('::' + setting.description)}>
|
||||
<FaQuestionCircle className="text-lg cursor-pointer ml-1" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue