diff --git a/src/routes/stocks/[tickerID]/stats/employees/+page.svelte b/src/routes/stocks/[tickerID]/stats/employees/+page.svelte index f9cb99b6..f81081f8 100644 --- a/src/routes/stocks/[tickerID]/stats/employees/+page.svelte +++ b/src/routes/stocks/[tickerID]/stats/employees/+page.svelte @@ -62,6 +62,7 @@ function selectSortingMethod(state:string) { const options = { + animation: false, grid: { left: '0%', right: '0%', @@ -131,6 +132,7 @@ function selectSortingMethod(state:string) { const options = { + animation: false, grid: { left: '0%', right: '0%', @@ -212,6 +214,7 @@ function plotGrowth() { const options = { + animation: false, grid: { left: '0%', right: '0%', diff --git a/src/routes/stocks/[tickerID]/stats/income/+page.svelte b/src/routes/stocks/[tickerID]/stats/income/+page.svelte index b3175e9b..b5eb56ec 100644 --- a/src/routes/stocks/[tickerID]/stats/income/+page.svelte +++ b/src/routes/stocks/[tickerID]/stats/income/+page.svelte @@ -528,7 +528,7 @@ const exportData = (format = 'csv') => { {filterRule === 'annual' ? 'Fiscal Year End' : 'Quarter Ends'} - Revenue + {statementConfig?.find((item) => item?.propertyName === displayStatement)?.label} Change Growth @@ -547,7 +547,7 @@ const exportData = (format = 'csv') => { - {item?.value-tableList[index+1]?.value !== 0 ? abbreviateNumber(item?.value-tableList[index+1]?.value) : '-'} + {item?.value-tableList[index+1]?.value !== 0 ? abbreviateNumber((item?.value-tableList[index+1]?.value)?.toFixed(2)) : '-'}