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.
1 parent 2797f57 commit 21efb64Copy full SHA for 21efb64
src/chart/parameter/component/FreeTextParameterSelect.tsx
@@ -81,7 +81,11 @@ const FreeTextParameterSelectComponent = (props: ParameterSelectProps) => {
81
}}
82
/>
83
{manualParameterSave ? <SelectionConfirmationButton onClick={() => manualHandleParametersUpdate()} /> : <></>}
84
- {running ? <CircularProgress size={18} style={{ position: 'absolute', right: '20px' }} /> : <></>}
+ {running && !manualParameterSave ? (
85
+ <CircularProgress size={18} style={{ position: 'absolute', right: '20px' }} />
86
+ ) : (
87
+ <></>
88
+ )}
89
</div>
90
);
91
};
0 commit comments