Skip to content

Commit

Permalink
Merge branch 'develop' into pipeline-page-test-cases
Browse files Browse the repository at this point in the history
  • Loading branch information
SagarRajput-7 authored Apr 30, 2024
2 parents 5e3d9aa + 191d9b0 commit 0465c93
Show file tree
Hide file tree
Showing 14 changed files with 502 additions and 23 deletions.
1 change: 1 addition & 0 deletions frontend/public/locales/en-GB/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"new_dashboard_title": "Sample Title",
"layout_saved_successfully": "Layout saved successfully",
"add_panel": "Add Panel",
"add_row": "Add Row",
"save_layout": "Save Layout",
"variable_updated_successfully": "Variable updated successfully",
"error_while_updating_variable": "Error while updating variable",
Expand Down
1 change: 1 addition & 0 deletions frontend/public/locales/en/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"new_dashboard_title": "Sample Title",
"layout_saved_successfully": "Layout saved successfully",
"add_panel": "Add Panel",
"add_row": "Add Row",
"save_layout": "Save Layout",
"full_view": "Full Screen View",
"variable_updated_successfully": "Variable updated successfully",
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/constants/queryBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,11 @@ export enum PANEL_TYPES {
EMPTY_WIDGET = 'EMPTY_WIDGET',
}

// eslint-disable-next-line @typescript-eslint/naming-convention
export enum PANEL_GROUP_TYPES {
ROW = 'row',
}

// eslint-disable-next-line @typescript-eslint/naming-convention
export enum ATTRIBUTE_TYPES {
SUM = 'Sum',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ function WidgetGraphComponent({
i: uuid,
w: 6,
x: 0,
h: 3,
h: 6,
y: 0,
},
];
Expand Down
Loading

0 comments on commit 0465c93

Please sign in to comment.