diff --git a/src/components/Dashboard/Group/Memo.tsx b/src/components/Dashboard/Group/Memo.tsx index 93391dd..25cfe61 100644 --- a/src/components/Dashboard/Group/Memo.tsx +++ b/src/components/Dashboard/Group/Memo.tsx @@ -195,12 +195,13 @@ export function StatusTable(props: { { ( rowsPerPage > 0 ? group.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage) : group - ).map((row,index) => ( + ).map((row, index) => ( { row.memos?.filter(memo => memo.type === 1).map(memo => (     diff --git a/src/pages/Connection/ConnectionDetail/ConnectionDialog.tsx b/src/pages/Connection/ConnectionDetail/ConnectionDialog.tsx index f8804e7..337a09d 100644 --- a/src/pages/Connection/ConnectionDetail/ConnectionDialog.tsx +++ b/src/pages/Connection/ConnectionDetail/ConnectionDialog.tsx @@ -56,12 +56,20 @@ export default function ConnectionGetDialogs(props: { - + - + diff --git a/src/pages/Group/GroupDetail/Connection.tsx b/src/pages/Group/GroupDetail/Connection.tsx index d7d348c..c97f2ed 100644 --- a/src/pages/Group/GroupDetail/Connection.tsx +++ b/src/pages/Group/GroupDetail/Connection.tsx @@ -228,12 +228,10 @@ export function EnableDialog(props: {
- Enable + Enable - + { - connection.enable && -
有効から無効に変更します。
+ connection.enable && "有効から無効に変更します。" } { - !connection.enable && -
無効から有効に変更します。
+ !connection.enable && "無効から有効に変更します。" }
diff --git a/src/pages/Group/GroupDetail/Service.tsx b/src/pages/Group/GroupDetail/Service.tsx index 21c8f77..c442cd2 100644 --- a/src/pages/Group/GroupDetail/Service.tsx +++ b/src/pages/Group/GroupDetail/Service.tsx @@ -97,8 +97,7 @@ function RowService(props: { {service.ID} - {serviceCode} + {serviceCode} {service.service_template.name} @@ -117,18 +116,32 @@ function RowService(props: { { !service.pass && - + }   - +   - +   - + @@ -136,8 +149,13 @@ function RowService(props: { - + @@ -186,12 +204,12 @@ export function ExaminationDialog(props: { TransitionComponent={Transition} keepMounted onClose={handleClose} - aria-labelledby="alert-dialog-slide-title" - aria-describedby="alert-dialog-slide-description" + aria-labelledby="alert-dialog-examination-title" + aria-describedby="alert-dialog-examination-description" > - 審査通過 + 審査通過 - + 審査を通過させますか? @@ -246,12 +264,12 @@ export function DeleteDialog(props: { TransitionComponent={Transition} keepMounted onClose={handleClose} - aria-labelledby="alert-dialog-slide-title" - aria-describedby="alert-dialog-slide-description" + aria-labelledby="alert-delete-dialog-title" + aria-describedby="alert-delete-dialog-description" > - 削除 + 削除 - + 本当に削除しますか? @@ -304,12 +322,10 @@ export function EnableDialog(props: {
- Enable + Enable - + { - service.enable && -
有効から無効に変更します。
+ service.enable && "有効から無効に変更します。" } { - !service.enable && -
無効から有効に変更します。
+ !service.enable && "無効から有効に変更します。" }