fix navigation bug in media overlay

This commit is contained in:
2022-04-26 14:20:27 +02:00
parent a5781bac8b
commit 23cb0195c1
@@ -115,6 +115,8 @@
{
if (this.loaded && this.$refs.grid)
{
this.gridConfig.page = 1;
this.$refs.grid.filter.page = 1;
this.$refs.grid.search(val);
}
}
@@ -180,6 +182,10 @@
async selectItem(id)
{
this.parentId = id;
this.gridConfig.page = 1;
this.$refs.grid.filter.page = 1;
this.$refs.grid.filter.search = null;
this.search = null;
await this.refresh();
},