0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Merged v4.8.4 into main

v4.8.4
This commit is contained in:
Daniel Lockyer 2021-06-29 18:07:38 +01:00
commit 1bfee18cbe
3 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{{#if @image}}
<div class="gh-image-uploader -with-image">
<div><img src={{@image}}></div>
<a class="image-delete" title="Delete" {{on "click" @remove}}>
<a class="image-delete" title="Delete" {{on "click" (fn @remove "")}}>
{{svg-jar "trash"}}
<span class="hidden">Delete</span>
</a>

View file

@ -191,7 +191,7 @@
@text="Add Twitter image"
@allowUnsplash={{true}}
@update={{action (mut this.settings.twitterImage)}}
@remove={{action (mut this.settings.twitterImage "")}}
@remove={{action (mut this.settings.twitterImage) ""}}
/>
</GhFormGroup>
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="twitterTitle">
@ -279,7 +279,7 @@
@text="Add Facebook image"
@allowUnsplash={{true}}
@update={{action (mut this.settings.ogImage)}}
@remove={{action (mut this.settings.ogImage "")}}
@remove={{action (mut this.settings.ogImage) ""}}
/>
</GhFormGroup>
<GhFormGroup @errors={{this.settings.errors}} @hasValidated={{this.settings.hasValidated}} @property="ogTitle">

View file

@ -1,6 +1,6 @@
{
"name": "ghost-admin",
"version": "4.8.3",
"version": "4.8.4",
"description": "Ember.js admin client for Ghost",
"author": "Ghost Foundation",
"homepage": "http://ghost.org",