Skip to content

Commit

Permalink
#160 - fix random values not changing per-call
Browse files Browse the repository at this point in the history
  • Loading branch information
SoulKa committed Jan 7, 2025
1 parent 74923db commit 6abc474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/environment/service/system-variable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const systemVariables = new Map<VariableObject['key'], VariableObject>(
},
description: 'A random UUID.',
},
].map((variable) => [variable.key, { enabled: true, ...variable }])
].map((variable) => [variable.key, Object.assign(variable, { enabled: true })])
);

/**
Expand Down

0 comments on commit 6abc474

Please sign in to comment.