[#9256] Remove the "~" from the fiat currency value "~10.4 USD"

Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
This commit is contained in:
Andrey Shovkoplyas 2019-11-07 14:20:19 +01:00
parent 9205a147a2
commit 40de054393
No known key found for this signature in database
GPG Key ID: EAAB7C8622D860A4
5 changed files with 4 additions and 10 deletions

View File

@ -1888,7 +1888,7 @@
:step step
:state (or state (if snt-amount :completed :disabled))
:editing? editing?
:fiat-value (str "~" fiat-value " " (:code currency))}
:fiat-value (str fiat-value " " (:code currency))}
(= step :set-snt-amount)
(assoc :snt-amount (str screen-snt-amount)

View File

@ -259,7 +259,7 @@
[{:style {:font-size 22 :color colors/gray}} token]]
[react/nested-text
{:style {:font-size 12}}
(str "~" fiat-amount)
fiat-amount
[{:style {:font-size 12 :color colors/gray}}
(str " " fiat-currency)]]
(if (or (nil? public-key) (= tribute-status :required))

View File

@ -221,7 +221,7 @@
" • "
[{:style {:color colors/black}}
(if converted-value
(str "~" (i18n/format-currency converted-value (:code wallet-currency)))
(i18n/format-currency converted-value (:code wallet-currency))
[react/activity-indicator {:color :colors/gray
:ios {:size :small}
:android {:size :16}}])]
@ -241,7 +241,7 @@
" • "
[{:style {:color colors/black}}
(if converted-fee-value
(str "~" (i18n/format-currency converted-fee-value (:code wallet-currency)))
(i18n/format-currency converted-fee-value (:code wallet-currency))
[react/activity-indicator {:color :colors/gray
:ios {:size :small}
:android {:size :16}}])]

View File

@ -49,7 +49,6 @@
[react/view {:padding 16 :padding-bottom 12 :flex 1 :justify-content :space-between}
[react/nested-text {:style {:color colors/white-transparent :line-height 38
:font-weight "600" :font-size 32}}
(accounts/total-tilde portfolio-value)
[{:style {:color colors/white}} portfolio-value]
" "
(:code currency)]

View File

@ -18,9 +18,6 @@
(def state (reagent/atom {:tab :assets}))
(defn total-tilde [value]
(when (and (not= "0" value) (not= "..." value)) "~"))
(views/defview account-card [{:keys [name color address] :as account}]
(views/letsubs [currency [:wallet/currency]
portfolio-value [:account-portfolio-value address]]
@ -31,7 +28,6 @@
[react/view {:style (styles/card color)}
[react/view {:flex-direction :row :align-items :center :justify-content :space-between}
[react/nested-text {:style {:color colors/white-transparent :font-weight "500"}}
(total-tilde portfolio-value)
[{:style {:color colors/white}} portfolio-value]
" "
(:code currency)]
@ -93,7 +89,6 @@
portfolio-value [:portfolio-value]]
[react/view
[react/nested-text {:style {:font-size 32 :color colors/gray :font-weight "600"}}
(total-tilde portfolio-value)
[{:style {:color colors/black}} portfolio-value]
" "
(:code currency)]