Compare commits

...
Author SHA1 Message Date
Ibrahem Khalil 9abb794785 Merge branch 'develop' into 18877 2024-02-18 14:02:46 +02:00
Flavio Fraschetti bfed36d19f [Communities] Account selection: сan't see the entire text of the community rules (#18761)
Resolved the scrolling issue pertaining to community rules. Additionally, will ensure compatibility with iOS devices lacking safe-area-view in the follow-up.
2024-02-18 08:03:52 -03:00
ibrkhalil aefb0338ec Use placeholder value if no wallet name is supplied 2024-02-17 20:14:36 +02:00
Yevheniia Berdnyk 456ccb4c69 e2e: temp fix for image selection 2024-02-17 19:03:20 +02:00
Andrea Maria Piana be2c697b7c set light client 2024-02-16 16:30:44 +00:00
7 changed files with 17 additions and 18 deletions
+1 -1
View File
@@ -72,7 +72,7 @@
:PeerExchange true
:Port 0
:UDPPort 0
:LightClient true})
:LightClient false})
(def login-node-config
{:WalletConfig (cond-> {:Enabled true}
@@ -7,10 +7,6 @@
(def container
{:flex 1})
(def page-top
{:padding-vertical 12
:padding-horizontal screen-horizontal-padding})
(def section-title
{:padding-top 12
:padding-bottom 4
@@ -18,11 +14,6 @@
(defn bottom-actions
[]
{:position :absolute
:background-color (colors/theme-colors colors/white colors/neutral-95)
:bottom 0
:left 0
:right 0
{:padding-top 12
:padding-horizontal screen-horizontal-padding
:padding-vertical 12
:flex 1})
:background-color (colors/theme-colors colors/white colors/neutral-95)})
@@ -28,7 +28,7 @@
highest-role-text (i18n/label (communities.utils/role->translation-key
highest-permission-role
:t/member))]
[rn/view {:style style/container}
[rn/safe-area-view {:style style/container}
[quo/page-nav
{:text-align :left
:icon-name :i/close
@@ -3,5 +3,6 @@
(def community-rule
{:flex 1
:align-items :flex-start
:padding-vertical 8
:padding-top 8
:margin-bottom 12
:padding-horizontal 20})
+1 -1
View File
@@ -43,7 +43,7 @@
:upstreamConfig config/default-network-rpc-url
:networkId config/default-network-id
:currentNetwork config/default-network
:wakuV2LightClient true
:wakuV2LightClient false
:previewPrivacy config/blank-preview?})))
(defn strip-file-prefix
@@ -133,7 +133,9 @@
:emoji @emoji
:color @account-color
:path @derivation-path
:account-name @account-name}]))
:account-name (if (string/blank? @account-name)
placeholder
@account-name)}]))
:auth-button-label (i18n/label :t/confirm)
;; TODO (@rende11) Add this property when sliding button issue will fixed
;; https://github.com/status-im/status-mobile/pull/18683#issuecomment-1941564785
+7 -2
View File
@@ -1242,8 +1242,13 @@ class ChatView(BaseView):
self.show_images_button.click()
self.allow_button.click_if_shown()
self.allow_all_button.click_if_shown()
[self.get_image_by_index(i).click() for i in indexes]
self.images_confirm_selection_button.click()
confirm_button = self.images_confirm_selection_button
for i in indexes:
# ToDo: should be changed to just 1 click when https://github.com/status-im/status-mobile/issues/18872 when is fixed
self.get_image_by_index(i).click()
if not confirm_button.is_element_displayed(sec=3):
self.get_image_by_index(i).click()
confirm_button.click()
self.chat_message_input.send_keys(description)
self.send_message_button.click()