Skip to content

Commit 8561dab

Browse files
committed
Implement openobserve#14 fix in openobserve#15 to pass tests
1 parent b3b1055 commit 8561dab

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"eslint-plugin-deprecation": "^2.0.0"
5858
},
5959
"engines": {
60-
"node": ">=16"
60+
"node": ">=18"
6161
},
6262
"dependencies": {
6363
"@emotion/css": "^11.1.3",

src/components/QueryEditor.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ export const QueryEditor = ({ query, onChange, onRunQuery, datasource, app, data
3232
setIsLoading(isLoading.slice(1));
3333
};
3434

35-
const isInDashboard = useMemo(() => app === 'panel-editor', [app]);
36-
37-
const getTimeStampColumnName = () => {
38-
return datasource.instanceSettings?.jsonData?.timestamp_column || '_timestamp';
39-
};
40-
4135
useEffect(() => {
4236
startLoading();
4337
getOrganizations({ url: datasource.url, page_num: 0, page_size: 1000, sort_by: 'id' })

0 commit comments

Comments
 (0)