summaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
authorAlexey 〒erentyev <axifnx@gmail.com>2019-12-17 14:03:36 +0300
committerLunny Xiao <xiaolunwen@gmail.com>2019-12-17 19:03:35 +0800
commit2b7e4cc1bdee5504f6b988dd848a980a107b0044 (patch)
tree4a8df46db95b2cecaafd8447caf61eaa3e71c1d5 /web_src
parent59fc29db383142586b6ac5cab7b324f16553e561 (diff)
downloadgitea-2b7e4cc1bdee5504f6b988dd848a980a107b0044.tar.gz
gitea-2b7e4cc1bdee5504f6b988dd848a980a107b0044.zip
Fixed show repositories filter (#9234) (#9379)
Signed-off-by: Alexey Terentyev <axifnx@gmail.com>
Diffstat (limited to 'web_src')
-rw-r--r--web_src/js/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 74e06488cb..b35f806598 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -2896,7 +2896,7 @@ function initVueApp() {
data: {
searchLimit: document.querySelector('meta[name=_search_limit]').content,
suburl: document.querySelector('meta[name=_suburl]').content,
- uid: document.querySelector('meta[name=_context_uid]').content,
+ uid: Number(document.querySelector('meta[name=_context_uid]').content),
},
});
}