fix: number sort (#2570)

* chore: remove sign

* fix: sort number

* chore: update patch

* ci: fix dart test

* chore: fmt
This commit is contained in:
Nathan.fooo
2023-05-21 11:13:22 +08:00
committed by GitHub
parent bb681bdd1e
commit 6c31cf9555
23 changed files with 291 additions and 689 deletions

View File

@ -151,7 +151,6 @@ class RowList {
(rowInfo) => rowInfo.rowPB.id == rowId,
);
if (index != -1) {
assert(index == oldIndex);
final rowInfo = remove(rowId)!.rowInfo;
insert(newIndex, rowInfo);
}