aboutsummaryrefslogtreecommitdiff
path: root/src/fields/List.ts
diff options
context:
space:
mode:
authorusodhi <61431818+usodhi@users.noreply.github.com>2020-10-16 17:09:07 +0530
committerusodhi <61431818+usodhi@users.noreply.github.com>2020-10-16 17:09:07 +0530
commit9b82c151533ec336155d20b9e1641dc2d7a5cf81 (patch)
treead707ddb8edb999301a0c658d170c9da89671bbc /src/fields/List.ts
parentb19972afc64bb9029b78c633e1841988af76adab (diff)
parente6d700159cb6c273a2df0fd02469e72aa5b48c86 (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web into restored_server_monitor
Diffstat (limited to 'src/fields/List.ts')
-rw-r--r--src/fields/List.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/List.ts b/src/fields/List.ts
index a0cbebaf5..215dff34b 100644
--- a/src/fields/List.ts
+++ b/src/fields/List.ts
@@ -78,7 +78,7 @@ const listHandlers: any = {
}
const res = list.__fields.splice(start, deleteCount, ...items);
this[Update](items.length === 0 && deleteCount ? { op: "$remFromSet", items: removed, length: list.__fields.length } :
- items.length && !deleteCount ? { op: "$addToSet", items, length: list.__fields.length } : undefined);
+ items.length && !deleteCount && start === list.__fields.length ? { op: "$addToSet", items, length: list.__fields.length } : undefined);
return res.map(toRealField);
}),
unshift(...items: any[]) {