Skip to content

Commit

Permalink
formatted by workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
imaimai17468 authored and actions-user committed Apr 9, 2023
1 parent a679a3c commit b04ba36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion view/next-project/src/pages/purchasereports/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ export default function PurchaseReports(props: Props) {
{/* name (個数/finasucheck) */}
{purchaseReportViewItem.purchaseItems.map((purchaseItem, index) => (
<div key={index}>
{`${purchaseItem.financeCheck?'○': 'x'} ${purchaseItem.item} (${purchaseItem.quantity})`}
{`${purchaseItem.financeCheck ? '○' : 'x'} ${purchaseItem.item} (${
purchaseItem.quantity
})`}
</div>
))}
</div>
Expand Down

0 comments on commit b04ba36

Please sign in to comment.