ui fix
This commit is contained in:
parent
c01afd7e45
commit
3317dd6e34
@ -780,7 +780,7 @@
|
|||||||
>Bid</td
|
>Bid</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{$wsBidPrice !== 0 && $wsBidPrice !== null
|
>{$wsBidPrice !== 0 && $wsBidPrice !== null
|
||||||
? $wsBidPrice
|
? $wsBidPrice
|
||||||
: (data?.getStockQuote?.bid ?? "-")}</td
|
: (data?.getStockQuote?.bid ?? "-")}</td
|
||||||
@ -793,7 +793,7 @@
|
|||||||
>Market Cap</td
|
>Market Cap</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{abbreviateNumber(data?.getStockQuote?.marketCap)}</td
|
>{abbreviateNumber(data?.getStockQuote?.marketCap)}</td
|
||||||
></tr
|
></tr
|
||||||
>
|
>
|
||||||
@ -804,7 +804,7 @@
|
|||||||
>AUM</td
|
>AUM</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{stockDeck?.aum !== null
|
>{stockDeck?.aum !== null
|
||||||
? abbreviateNumber(stockDeck?.aum)
|
? abbreviateNumber(stockDeck?.aum)
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
@ -817,7 +817,7 @@
|
|||||||
>NAV</td
|
>NAV</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{stockDeck?.nav !== null
|
>{stockDeck?.nav !== null
|
||||||
? abbreviateNumber(stockDeck?.nav)
|
? abbreviateNumber(stockDeck?.nav)
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
@ -831,7 +831,7 @@
|
|||||||
>EPS (ttm)</td
|
>EPS (ttm)</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.eps !== null
|
>{data?.getStockQuote?.eps !== null
|
||||||
? data?.getStockQuote?.eps?.toFixed(2)
|
? data?.getStockQuote?.eps?.toFixed(2)
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
@ -844,7 +844,7 @@
|
|||||||
>PE Ratio (ttm)</td
|
>PE Ratio (ttm)</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.pe !== null
|
>{data?.getStockQuote?.pe !== null
|
||||||
? data?.getStockQuote?.pe?.toFixed(2)
|
? data?.getStockQuote?.pe?.toFixed(2)
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
@ -858,7 +858,7 @@
|
|||||||
>Shares Out
|
>Shares Out
|
||||||
</td>
|
</td>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.sharesOutstanding !== null
|
>{data?.getStockQuote?.sharesOutstanding !== null
|
||||||
? abbreviateNumber(
|
? abbreviateNumber(
|
||||||
data?.getStockQuote?.sharesOutstanding,
|
data?.getStockQuote?.sharesOutstanding,
|
||||||
@ -873,7 +873,7 @@
|
|||||||
>Inception Date</td
|
>Inception Date</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{stockDeck?.inceptionDate !== null
|
>{stockDeck?.inceptionDate !== null
|
||||||
? new Date(stockDeck?.inceptionDate)?.toLocaleString(
|
? new Date(stockDeck?.inceptionDate)?.toLocaleString(
|
||||||
"en-US",
|
"en-US",
|
||||||
@ -898,7 +898,7 @@
|
|||||||
>Ask</td
|
>Ask</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{$wsAskPrice !== 0 && $wsAskPrice !== null
|
>{$wsAskPrice !== 0 && $wsAskPrice !== null
|
||||||
? $wsAskPrice
|
? $wsAskPrice
|
||||||
: (data?.getStockQuote?.ask ?? "-")}</td
|
: (data?.getStockQuote?.ask ?? "-")}</td
|
||||||
@ -911,7 +911,7 @@
|
|||||||
>Volume</td
|
>Volume</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{abbreviateNumber(data?.getStockQuote?.volume)}</td
|
>{abbreviateNumber(data?.getStockQuote?.volume)}</td
|
||||||
></tr
|
></tr
|
||||||
>
|
>
|
||||||
@ -922,7 +922,7 @@
|
|||||||
>Open</td
|
>Open</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.open?.toFixed(2)}</td
|
>{data?.getStockQuote?.open?.toFixed(2)}</td
|
||||||
></tr
|
></tr
|
||||||
>
|
>
|
||||||
@ -933,7 +933,7 @@
|
|||||||
>Previous Close</td
|
>Previous Close</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.previousClose?.toFixed(2)}</td
|
>{data?.getStockQuote?.previousClose?.toFixed(2)}</td
|
||||||
></tr
|
></tr
|
||||||
>
|
>
|
||||||
@ -944,7 +944,7 @@
|
|||||||
>Day's Range</td
|
>Day's Range</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.dayLow?.toFixed(2)} - {data?.getStockQuote?.dayHigh?.toFixed(
|
>{data?.getStockQuote?.dayLow?.toFixed(2)} - {data?.getStockQuote?.dayHigh?.toFixed(
|
||||||
2,
|
2,
|
||||||
)}</td
|
)}</td
|
||||||
@ -957,7 +957,7 @@
|
|||||||
>52-Week Range</td
|
>52-Week Range</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{data?.getStockQuote?.yearLow?.toFixed(2)} - {data?.getStockQuote?.yearHigh?.toFixed(
|
>{data?.getStockQuote?.yearLow?.toFixed(2)} - {data?.getStockQuote?.yearHigh?.toFixed(
|
||||||
2,
|
2,
|
||||||
)}</td
|
)}</td
|
||||||
@ -971,7 +971,7 @@
|
|||||||
>Holdings
|
>Holdings
|
||||||
</td>
|
</td>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{stockDeck?.holdingsCount !== null
|
>{stockDeck?.holdingsCount !== null
|
||||||
? abbreviateNumber(stockDeck?.holdingsCount)
|
? abbreviateNumber(stockDeck?.holdingsCount)
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
@ -984,7 +984,7 @@
|
|||||||
>Expense Ratio</td
|
>Expense Ratio</td
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
class="whitespace-nowrap px-0.5 py-[1px] text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
class="whitespace-nowrap px-0.5 py-[1px] font-semibold text-left text-sm xs:px-1 sm:py-1 sm:text-right"
|
||||||
>{stockDeck?.expenseRatio !== null
|
>{stockDeck?.expenseRatio !== null
|
||||||
? stockDeck?.expenseRatio?.toFixed(2) + "%"
|
? stockDeck?.expenseRatio?.toFixed(2) + "%"
|
||||||
: "n/a"}</td
|
: "n/a"}</td
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user