mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-08 07:21:03 +08:00
Fix loading team automations page [SCI-12337]
This commit is contained in:
parent
812591ef5a
commit
07ca0c81d6
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ export default {
|
|||
this.teamAutomationSettings = Object.fromEntries(
|
||||
Object.keys(this.emptySettings).map(key => [
|
||||
key,
|
||||
{ ...this.emptySettings[key], ...this.teamObject.teamSettings?.team_automation_settings[key] }
|
||||
{ ...this.emptySettings[key], ...(this.teamObject.teamSettings?.team_automation_settings || {})[key] }
|
||||
])
|
||||
);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue