mail: move the next/prev page buttons to header

aligns with other ui like activity and mailbox
This commit is contained in:
Girish Ramakrishnan
2020-02-13 09:09:01 -08:00
parent 35dd92f54e
commit bc31ea5eb7
3 changed files with 16 additions and 8 deletions

View File

@@ -1948,11 +1948,12 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout
};
// Email
Client.prototype.getMailEventLogs = function (page, perPage, callback) {
Client.prototype.getMailEventLogs = function (search, page, perPage, callback) {
var config = {
params: {
page: page,
per_page: perPage
per_page: perPage,
search: search
}
};