We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10a434d + d227b6d commit 29f754cCopy full SHA for 29f754c
src/chart/parameter/component/NodePropertyParameterSelect.tsx
@@ -159,11 +159,7 @@ const NodePropertyParameterSelectComponent = (props: ParameterSelectProps) => {
159
160
// The query used to populate the selector is invalid.
161
if (extraRecords && extraRecords[0] && extraRecords[0].error) {
162
- return (
163
- <NeoCodeViewerComponent
164
- value={`The parameter value retrieval query is invalid: \n${props.query}\n\nError message:\n${extraRecords[0].error}`}
165
- />
166
- );
+ return <NeoCodeViewerComponent value={`Please reload page`} />;
167
}
168
let options = extraRecords?.map((r) => r?._fields?.[displayValueRowIndex] || '(no data)');
169
options = props.autoSort ? options.sort() : options;
0 commit comments