mirror of
https://github.com/anyproto/anytype-kotlin.git
synced 2025-06-08 05:47:05 +09:00
DROID-3659 Multiplayer | Support link without approve, fixes (#2445)
This commit is contained in:
parent
55e430c70b
commit
bd9ccaff50
4 changed files with 101 additions and 9 deletions
|
@ -146,6 +146,10 @@ class RequestJoinSpaceFragment : BaseBottomSheetComposeFragment() {
|
|||
JoinSpaceWithoutApproveScreen(
|
||||
isLoading = isLoading,
|
||||
onRequestJoinSpaceClicked = vm::onRequestToJoinClicked,
|
||||
onCancelClicked = {
|
||||
vm.onCancelJoinSpaceRequestClicked()
|
||||
dismiss()
|
||||
},
|
||||
spaceName = spaceName,
|
||||
createdByName = createdByName
|
||||
)
|
||||
|
@ -155,6 +159,10 @@ class RequestJoinSpaceFragment : BaseBottomSheetComposeFragment() {
|
|||
onRequestJoinSpaceClicked = vm::onRequestToJoinClicked,
|
||||
spaceName = spaceName,
|
||||
createdByName = createdByName,
|
||||
onCancelClicked = {
|
||||
vm.onCancelJoinSpaceRequestClicked()
|
||||
dismiss()
|
||||
}
|
||||
)
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue