+ |
+ {new Date(item?.date)?.toLocaleString("en-US", {
+ month: "short",
+ day: "numeric",
+ year: "numeric",
+ daySuffix: "2-digit",
+ })}
+ |
+
+ {item?.adjDividend?.toFixed(3)}
+ |
+
+ {item?.recordDate?.length !== 0
+ ? new Date(item?.recordDate)?.toLocaleString(
+ "en-US",
+ {
+ month: "short",
+ day: "numeric",
+ year: "numeric",
+ daySuffix: "2-digit",
+ },
+ )
+ : "n/a"}
+ |
+
+ {item?.paymentDate?.length !== 0
+ ? new Date(item?.paymentDate)?.toLocaleString(
+ "en-US",
+ {
+ month: "short",
+ day: "numeric",
+ year: "numeric",
+ daySuffix: "2-digit",
+ },
+ )
+ : "n/a"}
+ |
+
+ {/each}
+