Browse Source

rm timeout

pull/3/head
rozetko 1 year ago
parent
commit
d5da3d32c8
  1. 7
      src/panels/corpglory-dataexporter-panel/components/Panel.tsx

7
src/panels/corpglory-dataexporter-panel/components/Panel.tsx

@ -38,10 +38,7 @@ export function Panel({ options, data, width, height, timeRange, onChangeTimeRan
return makeRequest<TableRowConfig[]>('/tasks', {});
}
setTimeout(() => {
getTasks().then(tasks => setTasks(tasks)).catch(err => console.error(err));
}, 2000);
getTasks().then(tasks => setTasks(tasks)).catch(err => console.error(err));
}, []);
function onAddTaskClick(): void {
@ -54,7 +51,7 @@ export function Panel({ options, data, width, height, timeRange, onChangeTimeRan
return (
<div>
{dataFrame === null ?
{dataFrame === null ?
// TODO: if datasource responds with error, display the error
<LoadingPlaceholder text="Loading..."></LoadingPlaceholder> :
<div>

Loading…
Cancel
Save