diff --git a/src/routes/stocks/[tickerID]/dividends/+page.svelte b/src/routes/stocks/[tickerID]/dividends/+page.svelte index 1148e3a5..cde60032 100644 --- a/src/routes/stocks/[tickerID]/dividends/+page.svelte +++ b/src/routes/stocks/[tickerID]/dividends/+page.svelte @@ -198,16 +198,16 @@ onMount(async() => { {#if stockDividends?.length !== 0} -
+
- + Dividend Yield
- + {dividendYield !== '0.00' ? dividendYield : '0'}%
@@ -216,11 +216,11 @@ onMount(async() => {
- + Annual Dividend
- + ${annualDividend !== '0.00' ? annualDividend : '0'}
@@ -229,11 +229,11 @@ onMount(async() => {
- + Ex-Dividend Date
- + {new Date(exDividendDate)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}
@@ -242,11 +242,11 @@ onMount(async() => {
- + Payout Frequency
- + {payoutFrequency === 4 ? 'Quartely' : payoutFrequency === 2 ? 'Half-Yearly' : payoutFrequency === 1 ? 'Annually' : 'n/a'}
@@ -255,11 +255,11 @@ onMount(async() => {
- + Payout Ratio
- + {payoutRatio !== '0.00' ? payoutRatio : '0'}%
@@ -268,11 +268,11 @@ onMount(async() => {
- + Dividend Growth
- + {dividendGrowth !== 'NaN' ? dividendGrowth+'%' : '-'}