forked from organicmaps/organicmaps
[ios] Fix: New bookmark list placement
Signed-off-by: narwalayush4 <96654849+narwalayush4@users.noreply.github.com>
This commit is contained in:
parent
17ef49e280
commit
5433ca59cc
1 changed files with 2 additions and 2 deletions
|
@ -128,8 +128,8 @@ extension BMCDefaultViewModel {
|
|||
return
|
||||
}
|
||||
|
||||
categories.append(manager.category(withId: manager.createCategory(withName: name)))
|
||||
view?.insert(at: [IndexPath(row: categories.count - 1, section: section)])
|
||||
categories.insert(manager.category(withId: manager.createCategory(withName: name)), at: 0)
|
||||
view?.insert(at: [IndexPath(row: 0, section: section)])
|
||||
}
|
||||
|
||||
func deleteCategory(at index: Int) {
|
||||
|
|
Loading…
Add table
Reference in a new issue