Skip to content

Commit

Permalink
Merge branch 'next' into cohort-segment
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtursKadikis authored Dec 6, 2024
2 parents 8885727 + 547ddc2 commit e9e88d5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ Features:
- [core] Removing HTML from localization files
- [core] Showing a flex banner on sidebar if the version is Countly Lite
- [crashes] Adding confirmation for deleting crash groups
- [dashoards] Fixed the "Add/ manage notes" button that did not work for the technology widget
- [dashoards] Fixed the "Add/manage notes" button that did not work for the technology widget
- [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
- [nps] Fixing issues with default logo selection
- [populator] Adding ability to select features to populate and other small improvements
- [surveys] Removed unnecessary limitation with using cohorts for targeting

Enterprise Features:
- [cohorts] Adding ability to edit cohorts. This deletes historical calculations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
return [];
}
},
titleMaxLength: {
type: Number,
required: false,
default: 50
},
status: {
type: Object,
required: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ <h4 class="has-ellipsis" v-tooltip="localTitle && localTitle.length > 30 ? local
v-else
class="bu-mb-2 cly-vue-content-builder__layout-header__info-title__input"
v-model="localTitle"
:maxlength="titleMaxLength"
@blur="finishEditing"
@keydown.enter.native="finishEditing"
/>
Expand Down
1 change: 1 addition & 0 deletions frontend/express/public/stylesheets/vue/clyvue.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4409,6 +4409,7 @@
min-height: calc(100vh - 106px);

&__body {
border-radius: 8px;
display: flex;
justify-content: space-between;

Expand Down

0 comments on commit e9e88d5

Please sign in to comment.