This commit is contained in:
2022-01-29 00:50:05 +00:00
parent 1f4d89c00c
commit 563d967b8d
3 changed files with 6 additions and 11 deletions

View File

@@ -127,7 +127,8 @@ export default new Router({
import(/* webpackChunkName: "ay-common" */ "./views/home-dashboard.vue")
},
{
path: "/home-search/:ayatype?",
//path: "/home-search/:ayatype?", this was making it sticky and couldn't change type as it was in url path
path: "/home-search",
name: "home-search",
component: () =>
import(/* webpackChunkName: "ay-common" */ "./views/home-search.vue")

View File

@@ -342,7 +342,8 @@ async function fetchTranslatedText() {
//
//
async function populateSelectionLists(vm) {
const res = await window.$gz.api.get("enum-list/list/alltranslated");
//const res = await window.$gz.api.get("enum-list/list/alltranslated");
const res = await window.$gz.api.get("enum-list/list/coreview");
if (res.error) {
vm.formState.serverError = res.error;
window.$gz.form.setErrorBoxErrors(vm);