mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-01 15:29:19 +03:00
🐛 Fixed theme download links (#1053)
closes https://github.com/TryGhost/Ghost/issues/10011 - theme download URLs were missing the `/download/` portion
This commit is contained in:
parent
dddf196c55
commit
8a43351d8e
@ -171,7 +171,7 @@ export default Controller.extend({
|
||||
},
|
||||
|
||||
downloadTheme(theme) {
|
||||
let downloadURL = `${this.get('ghostPaths.apiRoot')}/themes/${theme.name}`;
|
||||
let downloadURL = `${this.get('ghostPaths.apiRoot')}/themes/${theme.name}/download/`;
|
||||
let iframe = $('#iframeDownload');
|
||||
|
||||
if (iframe.length === 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user