Skip to content

Commit 170dfc4

Browse files
authored
Merge branch 'master' into anna/master
2 parents 3c0b775 + 84b74fd commit 170dfc4

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@ Fixes:
1313

1414
Enterprise Fixes:
1515
- [ldap] Error handling in ldap plugin on search error
16+
- [license] Display notification for non global admin user
1617
- [users] Load table data from report if user table calculation goes to report manager
1718

1819
Dependencies:
1920
- Bump puppeteer from 24.14.0 to 24.15.0
2021
- Bump mongodb from 6.17.0 to 6.18.0
2122
- Bump supertest from 7.1.3 to 7.1.4
2223

24+
2325
## Version 25.03.11
2426
Fixes:
2527
- [core] Fix mongo connection url parsing

plugins/plugins/frontend/public/templates/configurations.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,13 @@ <h3 v-if="predefinedStructure[selectedConfig].groups.length > 1 || group.label"
5151
v-for="key in group.list" :key="key"
5252
class="bu-columns bu-is-vcentered bu-p-5 config-section">
5353
<div class="bu-column bu-is-7">
54-
<div class="bu-has-text-weight-medium bu-is-flex bu-is-align-items-center config-section__header" :data-test-id="'settings-title-label-' + key.toLowerCase().replaceAll('_', '-')">
54+
<div class="bu-has-text-weight-medium bu-is-flex bu-is-align-items-center config-section__header">
5555
<div>
56-
<span class="bu-mr-2"> {{ getLabelName(key) }} </span>
56+
<span class="bu-mr-2" :data-test-id="'settings-title-label-' + key.toLowerCase().replaceAll('_', '-')"> {{ getLabelName(key) }} </span>
5757
</div>
58-
<div class="bu-is-flex bu-is-align-items-center">
58+
<div
59+
class="bu-is-flex bu-is-align-items-center"
60+
>
5961
<div
6062
v-for="(tag, index) in getWarningTags(selectedConfig, key)"
6163
:key="index"

ui-tests/cypress/lib/dashboard/manage/configurations/configurations.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ const verifyPageElements = () => {
179179
attrText: "100"
180180
});
181181

182+
cy.scrollPageToCenter();
183+
182184
cy.verifyElement({
183185
labelElement: configurationsListBoxElements({subFeature: SETTINGS.API.DATA_LIMITS.EVENT_SEGMENTATION_VALUE_LIMIT}).SELECTED_SUBFEATURE_TITLE,
184186
labelText: "Max unique values in each segmentation",
185187
});
186188

187-
cy.scrollPageToCenter();
188-
189189
cy.verifyElement({
190190
labelElement: configurationsListBoxElements({subFeature: SETTINGS.API.DATA_LIMITS.EVENT_SEGMENTATION_VALUE_LIMIT}).SELECTED_SUBFEATURE_DESCRIPTION,
191191
labelText: "Maximum number of unique values in each segmentation. Increasing this number may affect your server performance.",

0 commit comments

Comments
 (0)