Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion web_client/src/components/options/ConfigWindow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ const ConfigWindow: React.FC = () => {
const handleAddItem = (key: string, defaultValue: PossibleConfigValue) => {
setConfigData((prevData) => {
const currentValue = prevData[key];
const newValue = Array.isArray(currentValue) ? [...currentValue, defaultValue] : [defaultValue];
const clonedDefault = structuredClone(defaultValue);
const newValue = Array.isArray(currentValue) ? [...currentValue, clonedDefault] : [clonedDefault];
return {
...prevData,
[key]: newValue,
Expand Down