1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-03 05:35:29 +00:00

Fixed: Adding/Editing not replacing Implementation Name

This commit is contained in:
Mark McDowall 2024-11-27 17:00:09 -08:00
parent f9606518ee
commit 62bcf397dd
2 changed files with 2 additions and 1 deletions

View file

@ -93,7 +93,7 @@ function selectSettings<T extends ModelBaseSetting>(
// Return a flattened value // Return a flattened value
if (key === 'implementationName') { if (key === 'implementationName') {
// acc.implementationName = item[key]; acc.implementationName = item[key];
return acc; return acc;
} }

View file

@ -58,5 +58,6 @@ type Mapped<T> = {
}; };
export type PendingSection<T> = Mapped<T> & { export type PendingSection<T> = Mapped<T> & {
implementationName?: string;
fields?: PendingField<T>[]; fields?: PendingField<T>[];
}; };