Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Version 24.10.xx
Enterprise Fixes:
- [users] Set correct users widget table rows amount according to selected setting

## Version 24.10.13
Enterprise Fixes:
- [nps] Sort widgets by internal name and search by name or internal name
Expand All @@ -8,7 +12,6 @@ Features:
- [core] Use correct rights validation for loyality
- [plugins] Add configuration warning tags to settings UI


## Version 24.10.11
Enterprise Fixes:
- [drill] Fix query for users in drill that leads to severe server slowdown
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
preventDefaultSort: {
type: Boolean,
default: false
},
perPage: {
default: 10,
type: Number
}
},
computed: {
Expand Down Expand Up @@ -300,7 +304,7 @@
getControlParams: function() {
var defaultState = {
page: 1,
perPage: 10,
perPage: this.perPage,
searchQuery: '',
sort: [],
selectedDynamicCols: false
Expand Down Expand Up @@ -1055,4 +1059,4 @@
'</div>\n'
}));

}(window.countlyVue = window.countlyVue || {}, jQuery));
}(window.countlyVue = window.countlyVue || {}, jQuery));
Loading