Revert toSpliced to splice
This commit is contained in:
parent
0c53610231
commit
e9826f7efd
|
@ -423,7 +423,7 @@ export const createActions = (context: StoreContext): RowActionStore => {
|
|||
// Add to state
|
||||
if (saved.length) {
|
||||
rows.update(state => {
|
||||
return state.splice(index + 1, 0, ...saved)
|
||||
return state.toSpliced(index + 1, 0, ...saved)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
"extends": "../../tsconfig.build.json",
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"lib": ["ESNext"],
|
||||
"module": "preserve",
|
||||
"moduleResolution": "bundler",
|
||||
"outDir": "./dist",
|
||||
|
|
Loading…
Reference in New Issue