Skip to content

Commit e9e88d5

Browse files
Merge branch 'next' into cohort-segment
2 parents 8885727 + 547ddc2 commit e9e88d5

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ Features:
1111
- [core] Removing HTML from localization files
1212
- [core] Showing a flex banner on sidebar if the version is Countly Lite
1313
- [crashes] Adding confirmation for deleting crash groups
14-
- [dashoards] Fixed the "Add/ manage notes" button that did not work for the technology widget
14+
- [dashoards] Fixed the "Add/manage notes" button that did not work for the technology widget
1515
- [dbviewer] Preventing aggregation of using any stages which might open user to harmful actions (like $merge, $out, $lookup, $uninonWith) for all users except global admin
16+
- [nps] Fixing issues with default logo selection
1617
- [populator] Adding ability to select features to populate and other small improvements
18+
- [surveys] Removed unnecessary limitation with using cohorts for targeting
1719

1820
Enterprise Features:
1921
- [cohorts] Adding ability to edit cohorts. This deletes historical calculations

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

+5
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@
6262
return [];
6363
}
6464
},
65+
titleMaxLength: {
66+
type: Number,
67+
required: false,
68+
default: 50
69+
},
6570
status: {
6671
type: Object,
6772
required: false,

frontend/express/public/javascripts/countly/vue/templates/content/content-header.html

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ <h4 class="has-ellipsis" v-tooltip="localTitle && localTitle.length > 30 ? local
2121
v-else
2222
class="bu-mb-2 cly-vue-content-builder__layout-header__info-title__input"
2323
v-model="localTitle"
24+
:maxlength="titleMaxLength"
2425
@blur="finishEditing"
2526
@keydown.enter.native="finishEditing"
2627
/>

frontend/express/public/stylesheets/vue/clyvue.scss

+1
Original file line numberDiff line numberDiff line change
@@ -4409,6 +4409,7 @@
44094409
min-height: calc(100vh - 106px);
44104410

44114411
&__body {
4412+
border-radius: 8px;
44124413
display: flex;
44134414
justify-content: space-between;
44144415

0 commit comments

Comments
 (0)