Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"server": "docker-compose up --build",
"sign": "npx --yes @grafana/sign-plugin@latest"
},
"author": "Zinclabs OpenObserve",
"author": "OpenObserve",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.21.4",
Expand Down
2 changes: 1 addition & 1 deletion src/components/QueryEditor.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const instanceSettings: DataSourceInstanceSettings<MyDataSourceOptions> = {
name: 'Zinc',
url: '',
},
description: 'Zinc observe',
description: 'OpenObserve',
links: [],
logos: {
small: 'public/plugins/zinc-grafanatest-datasource/img/logo.png',
Expand Down
2 changes: 1 addition & 1 deletion src/components/QueryEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
>
Select Organization
</InlineLabel>
<Select

Check warning on line 225 in src/components/QueryEditor.tsx

View workflow job for this annotation

GitHub Actions / compatibilitycheck

'Select' is deprecated. Use Combobox component instead
id="query-editor-select-organization-input"
className={css`
width: 200px !important;
Expand All @@ -249,7 +249,7 @@
>
Select Stream
</InlineLabel>
<Select

Check warning on line 252 in src/components/QueryEditor.tsx

View workflow job for this annotation

GitHub Actions / compatibilitycheck

'Select' is deprecated. Use Combobox component instead
id="query-editor-select-stream-input"
className={css`
width: 200px !important;
Expand Down Expand Up @@ -287,7 +287,7 @@
<InlineLabel className={css`width: fit-content;`} transparent>
Display Mode
</InlineLabel>
<Select

Check warning on line 290 in src/components/QueryEditor.tsx

View workflow job for this annotation

GitHub Actions / compatibilitycheck

'Select' is deprecated. Use Combobox component instead
options={displayOptions}
value={displayOptions.find((o: any) => o.value === query.displayMode) || displayOptions[0]}
onChange={onDisplayModeChange}
Expand All @@ -299,7 +299,7 @@
key={generateEditorId}
query={query.query}
onChange={onChangeQuery}
placeholder="Enter a zinc query"
placeholder="Enter query"
getFields={streamDetails[query.stream]?.schema || []}
isSQLMode={query.sqlMode}
runQuery={onRunQuery}
Expand Down
4 changes: 2 additions & 2 deletions src/datasource.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ describe('DataSource', () => {
name: 'OpenObserve',
info: {
author: {
name: 'Zinc',
name: 'OpenObserve',
url: '',
},
description: 'Zinc observe',
description: 'OpenObserve',
links: [],
logos: {
small: 'public/plugins/zinc-grafanatest-datasource/img/logo.png',
Expand Down
Loading