Settings Providers düzenlemesi

This commit is contained in:
Sedat ÖZTÜRK 2025-11-10 14:37:05 +03:00
parent b766a9c409
commit 948c636fc2
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ export interface DynamicSettingDto {
dataType?: string
selectOptions?: Record<string, string>
formName?: string
providers?: string[]
providers?: string
isEditable?: boolean
}
export interface MainGroupedSettingDto {

View file

@ -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" />