diff --git a/src/lib/components/Table/Table.svelte b/src/lib/components/Table/Table.svelte index 28ec8220..ece0ecd7 100644 --- a/src/lib/components/Table/Table.svelte +++ b/src/lib/components/Table/Table.svelte @@ -880,7 +880,7 @@ class:text-right={column.align === "right"} > {#if item[column.key] === null || item[column.key] === undefined} - - + n/a {:else if column.key === "symbol"} {:else if column.key === "name"} @@ -923,7 +923,7 @@ {/if} {item[column.key] !== null ? item[column.key]?.toFixed(2) - : "-"} + : "n/a"} {:else if column.type === "percent"} {item[column.key] > 0.01 @@ -951,7 +951,7 @@ {:else if item[column.key] === "Hold"} {item[column.key]} {:else} - - + n/a {/if} {:else if column.type === "sentiment"}
{:else if row?.type === "percent"} {item[row?.rule] !== null ? item[row?.rule]?.toFixed(2) + "%" - : "-"} + : "n/a"} {:else if row?.type === "percentSign"} {#if item[row?.rule] >= 0} {/if}