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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Version 24.05.X
Enterprise Fixes:
- [surveys] Handle multiple survey submission from same user based on survey visibility
- [users] Set correct users widget table rows amount according to selected setting


## Version 24.05.45
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 @@ -1046,4 +1050,4 @@
'</div>\n'
}));

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