Skip to content

Commit ba9ef2c

Browse files
authored
Merge branch 'master' into dependabot/github_actions/actions-b033b81e51
2 parents e5111bc + 063a445 commit ba9ef2c

File tree

3 files changed

+20
-15
lines changed

3 files changed

+20
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## Version 25.03.15
2+
Enterprise Fixes:
3+
- [cohorts] Unescape segmentation properties options to prevent duplicated values
4+
- [ldap] Connection timeout values are added to LDAP config
5+
16
## Version 25.03.14
27

38
Fixes:
@@ -11,7 +16,7 @@ Dependencies:
1116
- Bump eslint-plugin-vue from 10.3.0 to 10.4.0
1217
- Bump fs-extra from 11.3.0 to 11.3.1
1318
- Bump lint-staged from 16.1.2 to 16.1.4
14-
- Bump puppeteer from 24.15.0 to 24.16.0
19+
- Bump puppeteer from 24.15.0 to 24.16.1
1520
- Bump sass from 1.89.2 to 1.90.0
1621
- Bump typescript from 5.8.3 to 5.9.2
1722

frontend/express/public/javascripts/countly/vue/components/input.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,8 +540,8 @@
540540
<div\
541541
class="text-medium cly-vue-listbox__item"\
542542
:style="[option.disabled ? {\'pointer-events\' : \'none\'} : {\'pointer-events\': \'all\'}]"\
543-
:key="option.value"\
544-
v-for="option in searchedOptions">\
543+
:key="option.value + \'-\' + index"\
544+
v-for="(option, index) in searchedOptions">\
545545
<div v-if="sortable" class="drag-handler"><img src="images/icons/drag-icon.svg" /></div>\
546546
<el-checkbox :test-id="testId + \'-\' + (option.label ? option.label.replaceAll(\' \', \'-\').toLowerCase() : \'el-checkbox\')" :label="option.value" v-tooltip="option.label" :key="option.value" :disabled="(disableNonSelected && !innerValue.includes(option.value)) || option.disabled">{{option.label}}</el-checkbox>\
547547
</div>\

package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)