We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e99f3e6 + 62fd505 commit 4449e04Copy full SHA for 4449e04
web/src/pages/Resolver/Parameters/Court.tsx
@@ -90,13 +90,14 @@ const Court: React.FC = () => {
90
) : (
91
<StyledSkeleton width={240} height={42} />
92
)}
93
- <StyledDropdownSelect
94
- items={disputeKitOptions}
95
- disabled={!disputeData.courtId}
96
- placeholder={{ text: "Select Dispute Kit" }}
97
- defaultValue={disputeData.disputeKitId ?? 1}
98
- callback={handleDisputeKitChange}
99
- />
+ {disputeData?.courtId && (
+ <StyledDropdownSelect
+ items={disputeKitOptions}
+ placeholder={{ text: "Select Dispute Kit" }}
+ defaultValue={disputeData.disputeKitId ?? 1}
+ callback={handleDisputeKitChange}
+ />
100
+ )}
101
<AlertMessageContainer>
102
<AlertMessage
103
title="Check the courts available beforehand"
0 commit comments