diff --git a/view/next-project/src/components/common/Tooltip/Tooltip.tsx b/view/next-project/src/components/common/Tooltip/Tooltip.tsx
index 21b286d0f..af2df1129 100644
--- a/view/next-project/src/components/common/Tooltip/Tooltip.tsx
+++ b/view/next-project/src/components/common/Tooltip/Tooltip.tsx
@@ -9,11 +9,11 @@ function Tooltip(props: Props): JSX.Element {
return (
diff --git a/view/next-project/src/components/mypage/Status.tsx b/view/next-project/src/components/mypage/Status.tsx
index 734d86618..3509c5dd7 100644
--- a/view/next-project/src/components/mypage/Status.tsx
+++ b/view/next-project/src/components/mypage/Status.tsx
@@ -1,4 +1,5 @@
import { GrStatusGoodSmall } from 'react-icons/gr';
+
import type { BuyReportInformationStatus } from '@/generated/model';
interface StatusProps {
diff --git a/view/next-project/src/components/mypage/TableSection.tsx b/view/next-project/src/components/mypage/TableSection.tsx
index 093ab5dd9..7b89cbd09 100644
--- a/view/next-project/src/components/mypage/TableSection.tsx
+++ b/view/next-project/src/components/mypage/TableSection.tsx
@@ -1,6 +1,8 @@
import React, { useState, useCallback } from 'react';
import { VscTriangleRight, VscTriangleDown } from 'react-icons/vsc';
+
import Status from './Status';
+
import type {
BuyReportInformation,
FestivalItemsForMyPage,
@@ -29,11 +31,11 @@ const convertDate = (date: string) => {
const TableHeader: React.FC = () => (
= ({
if (hasSubitems) toggleItem(item.festivalItemName || '');
}}
>
-
+ |
{hasSubitems && (
@@ -78,7 +80,7 @@ const TableItem: React.FC = ({
)}
{!hasSubitems && (
-
+
{truncateItemName(item?.festivalItemName || '')}
)}
@@ -110,28 +112,28 @@ const TableSubItem: React.FC = ({ items, itemsName, truncateI
return (
-
+
e.stopPropagation()}
>
{items.map((item) => (
- |
+ |
{truncateItemName(itemsName || '')}
|
-
+ |
{convertDate(item?.reportDate ?? '')}
|
-
+ |
{item.buyReportName || '-'}
|
-
+ |
{item.amount ? item.amount.toLocaleString() : '-'}
|
-
+ |
|
@@ -182,7 +184,9 @@ const TableSection: React.FC = ({ festivalItemDetails }) => {
return (
- {festivalItemDetails.divisionName}
+
+ {festivalItemDetails.divisionName}
+
diff --git a/view/next-project/src/components/purchaseorders/DeleteModal.tsx b/view/next-project/src/components/purchaseorders/DeleteModal.tsx
index 6cd9aeed3..48a94c00d 100644
--- a/view/next-project/src/components/purchaseorders/DeleteModal.tsx
+++ b/view/next-project/src/components/purchaseorders/DeleteModal.tsx
@@ -1,9 +1,10 @@
import { useRouter } from 'next/router';
import React, { Dispatch, FC, SetStateAction } from 'react';
-import { CloseButton, Modal, OutlinePrimaryButton, PrimaryButton } from '../common';
import { del } from '@api/api_methods';
+import { CloseButton, Modal, OutlinePrimaryButton, PrimaryButton } from '../common';
+
interface ModalProps {
setShowModal: Dispatch>;
id: number | string;
diff --git a/view/next-project/src/components/purchaseorders/DetailEditModal.tsx b/view/next-project/src/components/purchaseorders/DetailEditModal.tsx
index 348e708ee..6c00a8a2f 100644
--- a/view/next-project/src/components/purchaseorders/DetailEditModal.tsx
+++ b/view/next-project/src/components/purchaseorders/DetailEditModal.tsx
@@ -1,5 +1,6 @@
import router from 'next/router';
import { useState } from 'react';
+
import { Expense, PurchaseOrder, PurchaseOrderView } from '@/type/common';
import { put } from '@/utils/api/purchaseOrder';
import {
@@ -50,7 +51,7 @@ export const DetailEditModal: React.FC<{
-
+
購入した局
| |