Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9abb794785 | ||
|
|
bfed36d19f | ||
|
|
aefb0338ec | ||
|
|
456ccb4c69 | ||
|
|
be2c697b7c |
@@ -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})
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
|
||||
"owner": "status-im",
|
||||
"repo": "status-go",
|
||||
"version": "fix/filter-subscribes-order",
|
||||
"commit-sha1": "1842d88bcabb3f2b86547f6494c87108c88e3798",
|
||||
"src-sha256": "1x5cvh968h8yjf642wn6ninv4wizmmh9cq16sab8m5r34i0042w1"
|
||||
"version": "v0.174.8",
|
||||
"commit-sha1": "8a3e71378f7208f75bd688c02b0ae5c43ca600f2",
|
||||
"src-sha256": "10wn93xn6xnkg2d8slyygy9rfrwiargm49738bdjj1g4b81220bq"
|
||||
}
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user