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