Skip to content

Commit 21efb64

Browse files
committed
Freetext parameter with manual save style fixes
1 parent 2797f57 commit 21efb64

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/chart/parameter/component/FreeTextParameterSelect.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@ const FreeTextParameterSelectComponent = (props: ParameterSelectProps) => {
8181
}}
8282
/>
8383
{manualParameterSave ? <SelectionConfirmationButton onClick={() => manualHandleParametersUpdate()} /> : <></>}
84-
{running ? <CircularProgress size={18} style={{ position: 'absolute', right: '20px' }} /> : <></>}
84+
{running && !manualParameterSave ? (
85+
<CircularProgress size={18} style={{ position: 'absolute', right: '20px' }} />
86+
) : (
87+
<></>
88+
)}
8589
</div>
8690
);
8791
};

0 commit comments

Comments
 (0)