🎨 Improve insert database row sorting

This commit is contained in:
Daniel 2023-09-28 13:52:45 +08:00
parent 0971544eeb
commit ac752516a1
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -478,7 +478,7 @@ func addAttributeViewBlock(blockID string, operation *Operation, tree *parse.Tre
}
}
} else {
view.Table.RowIDs = append(view.Table.RowIDs, blockID)
view.Table.RowIDs = append([]string{blockID}, view.Table.RowIDs...)
}
}