Skip to content

Commit

Permalink
fix: inquiry-record 1.4.15-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
ldq1220 committed Dec 13, 2024
1 parent 2e75ef6 commit 3b20574
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gemel/plugin-inquiry-record-detail",
"version": "1.4.11-alpha",
"version": "1.4.15-alpha",
"main": "dist/server/index.js",
"displayName": "Inquiry Record Details",
"displayName.zh-CN": "询料记录详情",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
width: 520px;
max-height: 520px;
overflow-y: auto;
padding: 12px;
padding: 10px;
}

.messageItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const InquiryRecordView: FC = () => {
}}
/>
) : (
<Avatar size={32}>未设置</Avatar>
<Avatar size={32}></Avatar>
)}
</Descriptions.Item>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,8 @@ export const InquiryRecordProvider: FC<{
return (
<InquiryRecordContext.Provider
value={{
inquiryRecordData: data1 || inquiryRecordData?.data,
inquiryMaterialsData: data2 || inquiryMaterialsData?.data,
inquiryRecordData: inquiryRecordData?.data,
inquiryMaterialsData: inquiryMaterialsData?.data,
loading: isLoading,
selectedRecords,
setSelectedRecord,
Expand Down

0 comments on commit 3b20574

Please sign in to comment.