Skip to content

Commit 2b0df68

Browse files
Merge remote-tracking branch 'origin/master' into fix-allow-text-selection-and-copy-in-dashboard-widget
2 parents d9e4e06 + 954b9b8 commit 2b0df68

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Enterprise Fixes:
1010
- [users] Fix condition for custom property update
1111
- [drill] [survey] Fix duplicate question id
1212
- [drill] [survey] Display survey answer value instead of id in drill result
13+
- [cohorts] Fix query transformation for chr
1314

1415

1516
## Version 25.03.21

plugins/remote-config/frontend/public/templates/conditions.html

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
</el-table-column>
3737
<el-table-column type="options" v-if="hasUpdateRight || hasDeleteRight">
3838
<template v-slot="rowScope">
39-
<cly-more-options v-if="rowScope.row.hover" size="small" @command="handleCommand($event, scope, rowScope.row)">
40-
<el-dropdown-item v-if="hasUpdateRight" command="edit">{{i18n('common.edit')}}</el-dropdown-item>
41-
<el-dropdown-item v-if="hasDeleteRight" command="remove">{{i18n('common.delete')}}</el-dropdown-item>
39+
<cly-more-options :test-id="'more-option-button-' + rowScope.$index" v-if="rowScope.row.hover" size="small" @command="handleCommand($event, scope, rowScope.row)">
40+
<el-dropdown-item v-if="hasUpdateRight" command="edit" data-test-id="condition-data-table-more-option-edit-button">{{i18n('common.edit')}}</el-dropdown-item>
41+
<el-dropdown-item v-if="hasDeleteRight" command="remove" data-test-id="condition-data-table-more-option-delete-button">{{i18n('common.delete')}}</el-dropdown-item>
4242
</cly-more-options>
4343
</template>
4444
</el-table-column>

ui-tests/cypress/e2e/dashboard/manage/apps/apps.cy.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ describe('Create apps with different types such as Desktop, Mobile, and Web. ',
9797
appHelper.clickDeleteAppOption();
9898
appHelper.verifyDeleteAppPopupElements();
9999
appHelper.clickYesDeleteButton();
100+
navigationHelpers.goToApplicationsPage();
100101
appHelper.searchApp(app.appName);
101102
appHelper.verifyAppShouldBeDeleted();
102103

0 commit comments

Comments
 (0)