Skip to content

Commit 52a3861

Browse files
committed
Update non-RAW editions name.
The official reference for non-RAW editions is commercial editions. CMK-14841
1 parent 3c329d6 commit 52a3861

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ e2e-results/
2828

2929
# Editor
3030
.idea
31+
.vscode
3132

3233

3334
# cypress atrifacts

src/ui/ConfigEditor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ export class ConfigEditor extends PureComponent<Props, State> {
8787
}
8888

8989
const cmkEditions: EditionOption[] = [
90-
{ value: 'CEE', label: 'Enterprise Editions' },
91-
{ value: 'RAW', label: 'RAW Edition' },
90+
{ value: 'CEE', label: 'Commercial editions' },
91+
{ value: 'RAW', label: 'Raw Edition' },
9292
];
9393
if (!jsonData.edition) {
9494
this.onEditionChange(cmkEditions[0]);

tests/cypress/e2e/spec.cy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ describe('e2e tests', () => {
88
const hostName0 = 'localhost_grafana0';
99
const hostName1 = 'localhost_grafana1';
1010

11-
const CmkCEE = 'Enterprise Editions';
12-
const CmkCRE = 'RAW Edition';
11+
const CmkCEE = 'Commercial editions';
12+
const CmkCRE = 'Raw Edition';
1313

1414
const inputDatasourceId = 'data-source-picker';
1515
const inputFilterId = 'react-select-7-input';

0 commit comments

Comments
 (0)