diff --git a/CHANGELOG.md b/CHANGELOG.md index 82096ba535e..ecd3cf34176 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/frontend/express/public/javascripts/countly/vue/components/content.js b/frontend/express/public/javascripts/countly/vue/components/content.js index fedea228047..354db956a34 100644 --- a/frontend/express/public/javascripts/countly/vue/components/content.js +++ b/frontend/express/public/javascripts/countly/vue/components/content.js @@ -62,6 +62,11 @@ return []; } }, + titleMaxLength: { + type: Number, + required: false, + default: 50 + }, status: { type: Object, required: false, diff --git a/frontend/express/public/javascripts/countly/vue/templates/content/content-header.html b/frontend/express/public/javascripts/countly/vue/templates/content/content-header.html index 08e01102c7d..42ce3dfd626 100644 --- a/frontend/express/public/javascripts/countly/vue/templates/content/content-header.html +++ b/frontend/express/public/javascripts/countly/vue/templates/content/content-header.html @@ -21,6 +21,7 @@
diff --git a/frontend/express/public/stylesheets/vue/clyvue.scss b/frontend/express/public/stylesheets/vue/clyvue.scss index d0e8a66a78f..42d00bdb798 100644 --- a/frontend/express/public/stylesheets/vue/clyvue.scss +++ b/frontend/express/public/stylesheets/vue/clyvue.scss @@ -4409,6 +4409,7 @@ min-height: calc(100vh - 106px); &__body { + border-radius: 8px; display: flex; justify-content: space-between;