fix: channel list-item not clickable (#14469)
This commit is contained in:
parent
2e68fb22f5
commit
f3ad8beb6d
|
@ -10,6 +10,7 @@
|
||||||
(defn list-item [{:keys [name locked? mentions-count unread-messages?
|
(defn list-item [{:keys [name locked? mentions-count unread-messages?
|
||||||
muted? is-active-channel? emoji channel-color on-press]
|
muted? is-active-channel? emoji channel-color on-press]
|
||||||
:or {channel-color colors/primary-50}}]
|
:or {channel-color colors/primary-50}}]
|
||||||
|
[rn/touchable-opacity {:on-press on-press}
|
||||||
[rn/view {:style (merge {:height 48
|
[rn/view {:style (merge {:height 48
|
||||||
:display :flex
|
:display :flex
|
||||||
:border-radius 12
|
:border-radius 12
|
||||||
|
@ -20,8 +21,7 @@
|
||||||
:padding-left 12
|
:padding-left 12
|
||||||
:padding-right 12}
|
:padding-right 12}
|
||||||
(when is-active-channel?
|
(when is-active-channel?
|
||||||
{:background-color (colors/theme-alpha channel-color 0.05 0.05)}))
|
{:background-color (colors/theme-alpha channel-color 0.05 0.05)}))}
|
||||||
:on-press on-press}
|
|
||||||
[rn/view {:display :flex
|
[rn/view {:display :flex
|
||||||
:flex-direction :row
|
:flex-direction :row
|
||||||
:justify-content :flex-start
|
:justify-content :flex-start
|
||||||
|
@ -54,4 +54,4 @@
|
||||||
unread-messages?)
|
unread-messages?)
|
||||||
[quo2.icons/icon :i/channel-notification
|
[quo2.icons/icon :i/channel-notification
|
||||||
{:size 20
|
{:size 20
|
||||||
:no-color true}])]])
|
:no-color true}])]]])
|
||||||
|
|
Loading…
Reference in New Issue