Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
Enterprise Fixes:
- [nps] Sort widgets by internal name and search by name or internal name
- [surveys] Sort widgets by internal name and search by name or internal name
- [users] Set correct users widget table rows amount according to selected setting

## Version 24.10.12
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