diff options
author | silverwind <me@silverwind.io> | 2021-05-08 16:27:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 16:27:25 +0200 |
commit | 24ad131221d8cb0becf726e0570f53838262edf1 (patch) | |
tree | a06648e4fd6b051eaca60513b63ba3fe69314cd1 /web_src/js/index.js | |
parent | e2786147539909eaef2bc39fb728a10b88277d31 (diff) | |
download | gitea-24ad131221d8cb0becf726e0570f53838262edf1.tar.gz gitea-24ad131221d8cb0becf726e0570f53838262edf1.zip |
Rename StaticUrlPrefix to AssetUrlPrefix (#15779)
Use a new name for this template/frontend variable to make it distinct
from the server variable StaticURLPrefix.
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index 6ffff9cb19..5249b88516 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -25,7 +25,7 @@ import {renderMarkupContent} from './markup/content.js'; import {stripTags, mqBinarySearch} from './utils.js'; import {svg, svgs} from './svg.js'; -const {AppSubUrl, StaticUrlPrefix, csrf} = window.config; +const {AppSubUrl, AssetUrlPrefix, csrf} = window.config; let previewFileModes; const commentMDEditors = {}; @@ -3138,7 +3138,7 @@ function initVueComponents() { finalPage: 1, searchQuery, isLoading: false, - staticPrefix: StaticUrlPrefix, + staticPrefix: AssetUrlPrefix, counts: {}, repoTypes: { all: { |