diff --git a/src/pages/PublicNotice/ListPanel/BaseGrid.js b/src/pages/PublicNotice/ListPanel/BaseGrid.js
index 65e36d9..cbb7c36 100644
--- a/src/pages/PublicNotice/ListPanel/BaseGrid.js
+++ b/src/pages/PublicNotice/ListPanel/BaseGrid.js
@@ -70,13 +70,13 @@ export default function BaseGrid({rows}) {
headerName: isORGLoggedIn()?"Care Of / 我的備註":"我的備註",
flex: 3,
renderCell: (params) => (
- params.row.orgId === null?
-
- {params.row.remarks}
-
:
+ isORGLoggedIn()?
Care Of: {params.row.careOf}
我的備註: {params.row.remarks}
+
:
+
+ {params.row.remarks}
)
},
diff --git a/src/pages/PublicNotice/ListPanel/PendingPaymentTab.js b/src/pages/PublicNotice/ListPanel/PendingPaymentTab.js
index b90db3e..eb25df6 100644
--- a/src/pages/PublicNotice/ListPanel/PendingPaymentTab.js
+++ b/src/pages/PublicNotice/ListPanel/PendingPaymentTab.js
@@ -112,13 +112,13 @@ export default function SubmittedTab({ rows }) {
headerName: isORGLoggedIn()?"Care Of / 我的備註":"我的備註",
flex: 3,
renderCell: (params) => (
- params.row.orgId === null?
-
- {params.row.remarks}
-
:
+ isORGLoggedIn()?
Care Of: {params.row.careOf}
我的備註: {params.row.remarks}
+
:
+
+ {params.row.remarks}
)
},
diff --git a/src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js b/src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js
index b36b342..0debc82 100644
--- a/src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js
+++ b/src/pages/PublicNotice/ListPanel/SearchPublicNoticeTable.js
@@ -73,13 +73,13 @@ export default function SearchPublicNoticeTable({ recordList }) {
headerName: isORGLoggedIn()?"Care Of / 我的備註":"我的備註",
flex: 3,
renderCell: (params) => (
- params.row.orgId === null?
-
- {params.row.remarks}
-
:
+ isORGLoggedIn()?
Care Of: {params.row.careOf}
我的備註: {params.row.remarks}
+
:
+
+ {params.row.remarks}
)
},