Skip to content

Commit

Permalink
fix:修复crud unSelectedItems无法在公式内解析问题
Browse files Browse the repository at this point in the history
  • Loading branch information
hsm-lv committed Jan 2, 2024
1 parent d9ace50 commit 4de443b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/amis-core/src/store/crud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export const CRUDStore = ServiceStore.named('CRUDStore')
return extendObject(self.data, {
...self.query,
...self.data,
selectedItems: self.selectedItems,
unSelectedItems: self.unSelectedItems
selectedItems: self.selectedItems.concat(),
unSelectedItems: self.unSelectedItems.concat()
});
},

Expand Down

0 comments on commit 4de443b

Please sign in to comment.