Revert SearchInput logic to a simplified one + Redirect on results on page reload

This commit is contained in:
2020-10-04 15:36:29 +02:00
parent 47cb0bbdac
commit c459863a0e
2 changed files with 11 additions and 69 deletions

View File

@@ -0,0 +1,3 @@
export default function({ store, redirect, route }) {
if (store.state.search == "") return redirect("/");
}