close #1444 Fixed: Apps All Categories not working

This commit is contained in:
Cüneyt Şentürk
2020-05-17 03:15:26 +03:00
parent 2ef5502172
commit 92288eb60f
4 changed files with 5 additions and 5 deletions

View File

@ -34,7 +34,7 @@ const app = new Vue({
onChangeCategory(category) {
let path = document.getElementById('category_page').value;
if (category) {
if (category != '*') {
path += '/' + encodeURIComponent(category);
} else {
path = app_home;

View File

@ -56,7 +56,7 @@ const app = new Vue({
onChangeCategory(category) {
let path = document.getElementById('category_page').value;
if (category) {
if (category != '*') {
path += '/' + encodeURIComponent(category);
} else {
path = app_home;