diff --git a/src/lib/components/ShareHolders.svelte b/src/lib/components/ShareHolders.svelte index 3d7dcf1d..0e2e8918 100644 --- a/src/lib/components/ShareHolders.svelte +++ b/src/lib/components/ShareHolders.svelte @@ -178,13 +178,15 @@ let charNumber = 30; {#if isLoaded} {#if shareholderList?.length !== 0}
-
+
As of {new Date(rawData?.date)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}, - {rawData?.investorsHolding} Hedge Funds hold a total of {abbreviateNumber(rawData?.numberOf13Fshares)} {$displayCompanyName} shares, with a combined investment of {abbreviateNumber(rawData?.totalInvested, true)}. + {new Intl.NumberFormat("en", { + minimumFractionDigits: 0, + maximumFractionDigits: 0 + }).format(rawData?.investorsHolding)} Hedge Funds hold a total of {abbreviateNumber(rawData?.numberOf13Fshares)} {$displayCompanyName} shares, with a combined investment of {abbreviateNumber(rawData?.totalInvested, true)}.
-
@@ -221,7 +223,7 @@ let charNumber = 30;
-
+
@@ -320,8 +322,8 @@ let charNumber = 30; {#if topHolders !== 0} - - The top 10 shareholders own {topHolders <= 0.01 ? "< 0.01%" : topHolders?.toFixed(2)+'%'} + + The Top 10 shareholders own {topHolders <= 0.01 ? "< 0.01%" : topHolders?.toFixed(2)+'%'} of the company. {/if}