1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-230 Editor | Creating objects in objects via mention (@) option might crash app (#2456)

This commit is contained in:
Evgenii Kozlov 2022-08-01 17:14:14 +03:00 committed by GitHub
parent a8fc5e5633
commit c233406376
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -17,6 +17,8 @@
* Editor | Add possibility to upload a file into a media block in error state (#2351)
* Editor | Should not trigger keyboard opening when tapping on object's top toolbar (#2399)
* Editor | Copy/paste is not working for table of contents (#2441)
* Editor | Can't create an object using the @ mention option due to an internal error (#2455)
* Editor | Creating objects in objects via the mention (@) option might crash app (#2456)
* Search | Keyboard should be dismissed when navigating from search results to sets of objects (#2416)
* Sets | Grid View headers should show or hide object icon in row headers according to the view settings (#2408)
* Sets | Updated screen text for sorts for checkbox relations (#2424)

View file

@ -18,6 +18,7 @@ class MentionAdapter(
fun setData(mentions: List<DefaultObjectView>) {
if (mentions.isEmpty()) {
data.clear()
notifyDataSetChanged()
} else {
data.clear()
data.addAll(mentions)