summaryrefslogtreecommitdiffstats
path: root/web_src/js/components/DashboardRepoList.js
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/components/DashboardRepoList.js')
-rw-r--r--web_src/js/components/DashboardRepoList.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/components/DashboardRepoList.js b/web_src/js/components/DashboardRepoList.js
index 426d362005..12e2ee3cc6 100644
--- a/web_src/js/components/DashboardRepoList.js
+++ b/web_src/js/components/DashboardRepoList.js
@@ -1,7 +1,7 @@
import Vue from 'vue';
import {initVueSvg, vueDelimiters} from './VueComponentLoader.js';
-const {AppSubUrl, AssetUrlPrefix, pageData} = window.config;
+const {appSubUrl, assetUrlPrefix, pageData} = window.config;
function initVueComponents() {
Vue.component('repo-search', {
@@ -95,7 +95,7 @@ function initVueComponents() {
finalPage: 1,
searchQuery,
isLoading: false,
- staticPrefix: AssetUrlPrefix,
+ staticPrefix: assetUrlPrefix,
counts: {},
repoTypes: {
all: {
@@ -361,7 +361,7 @@ export function initDashboardRepoList() {
data: () => {
return {
searchLimit: dashboardRepoListData.searchLimit || 0,
- subUrl: AppSubUrl,
+ subUrl: appSubUrl,
uid: dashboardRepoListData.uid || 0,
};
},