Skip to content

Commit

Permalink
fix: tag color
Browse files Browse the repository at this point in the history
  • Loading branch information
codemaster115 committed May 6, 2024
1 parent 8fa4d6e commit 88a63d7
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/quo/components/notifications/activity_log/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@
[quo.components.notifications.activity-log.style :as style]
[quo.components.tags.status-tags :as status-tags]
[quo.foundations.colors :as colors]
[quo.theme]
[react-native.core :as rn]
[utils.i18n :as i18n]))
[utils.i18n :as i18n]
[utils.re-frame :as rf]))

(defn- activity-reply-text-input
[{:keys [on-update-reply max-reply-length valid-reply?]} reply-input set-reply-input]
Expand Down Expand Up @@ -145,11 +147,13 @@

(defmethod footer-item-view :status
[{:keys [label subtype blur?]} _ _]
[status-tags/status-tag
{:size :small
:label label
:status {:type subtype}
:blur? blur?}])
(let [app-theme (rf/sub [:theme])]
[quo.theme/provider app-theme
[status-tags/status-tag
{:size :small
:label label
:status {:type subtype}
:blur? blur?}]]))

(defn- footer
[{:keys [replying? items] :as props}]
Expand Down

0 comments on commit 88a63d7

Please sign in to comment.