diff --git a/assets/templates/index.tmpl b/assets/templates/index.tmpl index 96a0f40d8..f2afc6d53 100644 --- a/assets/templates/index.tmpl +++ b/assets/templates/index.tmpl @@ -3,7 +3,7 @@ - + {{ .config.SiteTitle }} diff --git a/assets/templates/minimal.tmpl b/assets/templates/minimal.tmpl index e2e50ab9e..285d139d3 100644 --- a/assets/templates/minimal.tmpl +++ b/assets/templates/minimal.tmpl @@ -3,7 +3,7 @@ - + {{ .config.SiteTitle }} diff --git a/assets/templates/rainbow.tmpl b/assets/templates/rainbow.tmpl index 780a7236b..d70ae315f 100644 --- a/assets/templates/rainbow.tmpl +++ b/assets/templates/rainbow.tmpl @@ -3,7 +3,7 @@ - + {{ .config.SiteTitle }} diff --git a/assets/templates/share.tmpl b/assets/templates/share.tmpl index e1eb13a36..c9ede2a03 100644 --- a/assets/templates/share.tmpl +++ b/assets/templates/share.tmpl @@ -3,7 +3,7 @@ - + {{ .config.SiteTitle }}{{if .config.SiteCaption}}: {{ .config.SiteCaption }}{{end}} diff --git a/docker/demo/index.tmpl b/docker/demo/index.tmpl index ec04541c1..635b7b897 100644 --- a/docker/demo/index.tmpl +++ b/docker/demo/index.tmpl @@ -3,7 +3,7 @@ - + {{ .config.SiteTitle }} diff --git a/frontend/src/component/album/clipboard.vue b/frontend/src/component/album/clipboard.vue index c805c3d89..b297e16be 100644 --- a/frontend/src/component/album/clipboard.vue +++ b/frontend/src/component/album/clipboard.vue @@ -42,8 +42,8 @@ edit get_app
- + @@ -22,24 +22,25 @@ get_app bookmark @@ -47,8 +48,8 @@ clear @@ -63,7 +64,7 @@ import Api from "common/api"; import Notify from "common/notify"; export default { - name: 'p-file-clipboard', + name: 'PFileClipboard', props: { selection: Array, refresh: Function, @@ -101,7 +102,7 @@ export default { }, onDownload(path) { Notify.success(this.$gettext("Downloading…")); - const link = document.createElement('a') + const link = document.createElement('a'); link.href = path; link.download = "photos.zip"; link.click(); diff --git a/frontend/src/component/label/clipboard.vue b/frontend/src/component/label/clipboard.vue index e716eed84..d1ea5f5aa 100644 --- a/frontend/src/component/label/clipboard.vue +++ b/frontend/src/component/label/clipboard.vue @@ -1,19 +1,19 @@