fix page transition

This commit is contained in:
Kazushi Morishima 2018-08-16 15:16:51 +09:00
parent 7b99623f74
commit 7fb409b017
2 changed files with 2 additions and 0 deletions

View file

@ -69,6 +69,7 @@ public class AdminDictStopwordsAction extends FessAdminAction {
@Execute
public HtmlResponse index(final SearchForm form) {
validate(form, messages -> {}, () -> asDictIndexHtml());
stopwordsPager.clear();
return asHtml(path_AdminDictStopwords_AdminDictStopwordsJsp).renderWith(data -> {
searchPaging(data, form);
});

View file

@ -73,6 +73,7 @@ public class AdminSearchlogAction extends FessAdminAction {
@Execute
public HtmlResponse search(final SearchForm form) {
saveToken();
searchLogPager.clear();
copyBeanToBean(form, searchLogPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> {
searchPaging(data, form);