From a9ad7ded0a4272915d5590c559213aa6a78dc671 Mon Sep 17 00:00:00 2001 From: "oura.a" Date: Wed, 19 Jul 2023 08:02:29 +0000 Subject: [PATCH] =?UTF-8?q?Merged=20PR=20242:=20=E8=87=AA=E5=8B=95?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E3=82=92=E8=BF=BD=E5=8A=A0=EF=BC=88License?= =?UTF-8?q?=E4=B8=80=E8=A6=A7=E7=94=BB=E9=9D=A2=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 概要 [Task2224: 自動更新を追加(License一覧画面)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/2224) ライセンス注文ポップアップが閉じた際に、ライセンス情報画面に表示されている情報が更新されないバグを修正。 また、横展開を実施  ・対象:自動でポップアップが閉じた際に、親画面に更新が必要な情報が表示されている画面  ・結果:ユーザー一覧画面のユーザー追加ポップアップに対しても同様の処置を実施 ## レビューポイント なし ## UIの変更 なし ## 動作確認状況 ローカルで動作確認済み ## 補足 なし --- dictation_client/src/pages/LicensePage/licenseSummary.tsx | 1 + dictation_client/src/pages/UserListPage/index.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/dictation_client/src/pages/LicensePage/licenseSummary.tsx b/dictation_client/src/pages/LicensePage/licenseSummary.tsx index bf3bfa1..0652617 100644 --- a/dictation_client/src/pages/LicensePage/licenseSummary.tsx +++ b/dictation_client/src/pages/LicensePage/licenseSummary.tsx @@ -50,6 +50,7 @@ const LicenseSummary: React.FC = (): JSX.Element => { { setIslicenseOrderPopupOpen(false); + dispatch(getLicenseSummaryAsync()); }} /> )} diff --git a/dictation_client/src/pages/UserListPage/index.tsx b/dictation_client/src/pages/UserListPage/index.tsx index 6e4620a..4e8c195 100644 --- a/dictation_client/src/pages/UserListPage/index.tsx +++ b/dictation_client/src/pages/UserListPage/index.tsx @@ -41,6 +41,7 @@ const UserListPage: React.FC = (): JSX.Element => { isOpen={isPopupOpen} onClose={() => { setIsPopupOpen(false); + dispatch(listUsersAsync()); }} />