mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
wip fix(core): getConfigProxyForProfile skipUserDefaults param never used c1e03ed532
This commit is contained in:
parent
5ba6bfbd7d
commit
4d146941f4
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ export class ProfilesService {
|
|||
}
|
||||
|
||||
getConfigProxyForProfile <T extends Profile> (profile: PartialProfile<T>, skipUserDefaults = false): T {
|
||||
const defaults = this.getProfileDefaults(profile).reduce(configMerge, {})
|
||||
const defaults = this.getProfileDefaults(profile, skipUserDefaults).reduce(configMerge, {})
|
||||
return new ConfigProxy(profile, defaults) as unknown as T
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue