ui fix
This commit is contained in:
parent
bbba87f3b3
commit
85ba1761ec
@ -423,12 +423,14 @@
|
||||
(item) => item?.propertyName === displayStatement,
|
||||
)?.text}
|
||||
<!--<Katex formula={true} math={"\\textrm{Revenue}=\\textrm{Revenue} - \\textrm{All Expenses}"}/>-->
|
||||
{:else}
|
||||
{:else if income?.length > 0}
|
||||
Get detailed income statement breakdowns, uncovering revenue,
|
||||
expenses, and much more.
|
||||
{:else}
|
||||
No financial data available for {$displayCompanyName}
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
{#if income?.length > 0}
|
||||
<div
|
||||
class="inline-flex justify-center w-full rounded-md sm:w-auto sm:ml-auto mt-3 mb-6"
|
||||
>
|
||||
@ -585,7 +587,8 @@
|
||||
<option value="operatingExpenses"
|
||||
>Operating Expenses</option
|
||||
>
|
||||
<option value="interestExpense">Interest Expense</option>
|
||||
<option value="interestExpense">Interest Expense</option
|
||||
>
|
||||
<option value="incomeBeforeTax">Pretax Income</option>
|
||||
<option value="incomeTaxExpense">Income Tax</option>
|
||||
<option value="netIncome">Net Income</option>
|
||||
@ -685,7 +688,8 @@
|
||||
{:else if item?.value - tableList[index + 1]?.value > 0}
|
||||
<span class="text-[#00FC50]">
|
||||
{(
|
||||
((item?.value - tableList[index + 1]?.value) /
|
||||
((item?.value -
|
||||
tableList[index + 1]?.value) /
|
||||
Math.abs(item?.value)) *
|
||||
100
|
||||
)?.toFixed(2)}%
|
||||
@ -747,6 +751,7 @@
|
||||
</table>
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user