mirror of https://github.com/OCA/web.git
commit
e97af448e1
|
@ -78,9 +78,9 @@ export class Refresher extends Component {
|
||||||
* @returns {Promise<Boolean>}
|
* @returns {Promise<Boolean>}
|
||||||
*/
|
*/
|
||||||
async refresh() {
|
async refresh() {
|
||||||
let updated = this._searchModelRefresh();
|
let updated = await this._pagerRefresh();
|
||||||
if (!updated) {
|
if (!updated) {
|
||||||
updated = await this._pagerRefresh();
|
updated = this._searchModelRefresh();
|
||||||
}
|
}
|
||||||
return updated;
|
return updated;
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
}
|
}
|
||||||
50% {
|
50% {
|
||||||
transform: translateY(10px);
|
transform: translateY(10px);
|
||||||
|
margin-bottom: 10px;
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
|
|
Loading…
Reference in New Issue