From bdcce37b5a9dcb6f52b841c8ccca921fd409924b Mon Sep 17 00:00:00 2001 From: "makabe.t" Date: Thu, 23 May 2024 01:12:31 +0000 Subject: [PATCH 1/5] =?UTF-8?q?Merged=20PR=20898:=20=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task4174: 対応](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/4174) - アカウント情報画面からディーラーを変更する際に、同名ディーラーがいてもそれぞれ別個に指定できるようにIDで検索するように修正しました。 ## レビューポイント - 対応方針は認識通りでしょうか? ## UIの変更 - なし ## クエリの変更 - クライアントのみ変更なのでなし ## 動作確認状況 - ローカルで確認 - 行った修正がデグレを発生させていないことを確認できるか - 具体的にどのような確認をしたか - ローカルで同名ディーラーでそれぞれを指定して変更できることを確認 --- dictation_client/src/pages/AccountPage/index.tsx | 4 ++-- .../src/pages/PartnerPage/addPartnerAccountPopup.tsx | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dictation_client/src/pages/AccountPage/index.tsx b/dictation_client/src/pages/AccountPage/index.tsx index cf887ef..5bfb8b4 100644 --- a/dictation_client/src/pages/AccountPage/index.tsx +++ b/dictation_client/src/pages/AccountPage/index.tsx @@ -158,7 +158,7 @@ const AccountPage: React.FC = (): JSX.Element => { changeDealer({ parentAccountId: dealers.find( - (x) => x.name === event.target.value + (x) => x.id === Number(event.target.value) )?.id || undefined, }) ); @@ -175,7 +175,7 @@ const AccountPage: React.FC = (): JSX.Element => { )} --`} {dealers.map((x) => ( - ))} diff --git a/dictation_client/src/pages/PartnerPage/addPartnerAccountPopup.tsx b/dictation_client/src/pages/PartnerPage/addPartnerAccountPopup.tsx index 48b36a2..2ea40a4 100644 --- a/dictation_client/src/pages/PartnerPage/addPartnerAccountPopup.tsx +++ b/dictation_client/src/pages/PartnerPage/addPartnerAccountPopup.tsx @@ -110,6 +110,7 @@ export const AddPartnerAccountPopup: React.FC = ( country, adminName, email, + offset, ]); return ( From 4b16e6a004a3943d25b430b9eca24dd8ae042bc8 Mon Sep 17 00:00:00 2001 From: "saito.k" Date: Fri, 24 May 2024 05:23:26 +0000 Subject: [PATCH 2/5] =?UTF-8?q?Merged=20PR=20900:=20=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=EF=BC=88=E3=83=95=E3=83=83=E3=82=BF=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E8=A6=8F=E7=B4=84=E3=83=AA=E3=83=B3=E3=82=AF=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task4084: 画面修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/4084) - フッターに規約リンクを追加 - デザインはOMDS様に確認済み - サポートページにフッターを追加 ## レビューポイント - 特になし ## UIの変更 - Before/Afterのスクショなど - https://ndstokyo.sharepoint.com/:f:/r/sites/Piranha/Shared%20Documents/General/OMDS/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88/Hotfix4084?csf=1&web=1&e=bQBkQI ## クエリの変更 - Repositoryを変更し、クエリが変更された場合は変更内容を確認する - Before/Afterのクエリ - クエリ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など - 行った修正がデグレを発生させていないことを確認できるか - 具体的にどのような確認をしたか - どのケースに対してどのような手段でデグレがないことを担保しているか ## 補足 - 相談、参考資料などがあれば --- .../src/components/footer/index.tsx | 46 ++++- .../src/pages/SupportPage/index.tsx | 2 + dictation_client/src/translation/de.json | 154 +++++++++-------- dictation_client/src/translation/en.json | 116 +++++++------ dictation_client/src/translation/es.json | 158 ++++++++++-------- dictation_client/src/translation/fr.json | 156 +++++++++-------- 6 files changed, 374 insertions(+), 258 deletions(-) diff --git a/dictation_client/src/components/footer/index.tsx b/dictation_client/src/components/footer/index.tsx index 6d4ec1e..3121fb4 100644 --- a/dictation_client/src/components/footer/index.tsx +++ b/dictation_client/src/components/footer/index.tsx @@ -6,8 +6,50 @@ import { getTranslationID } from "translation"; const Footer: React.FC = () => { const [t] = useTranslation(); return ( -