forked from TryGhost/Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed post/page labels in feature image and save components (TryGhost…
…#1143) closes TryGhost/Ghost#10658 - update publish menu states to use `{{post.displayName}}` instead of hard coded `post` - update settings menu image uploader to generate CTA using `post.displayName`
- Loading branch information
1 parent
ca5f9f1
commit 98f2ba3
Showing
4 changed files
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<header class="gh-publishmenu-heading">Update post status</header> | ||
<header class="gh-publishmenu-heading">Update {{post.displayName}} status</header> | ||
<section class="gh-publishmenu-content"> | ||
<div class="gh-publishmenu-radio {{if (eq saveType "draft") "active"}}" {{action setSaveType "draft" on="click"}}> | ||
<div class="gh-publishmenu-radio-button" data-test-publishmenu-unpublished-option></div> | ||
<div class="gh-publishmenu-radio-content"> | ||
<div class="gh-publishmenu-radio-label">Unpublished</div> | ||
<div class="gh-publishmenu-radio-desc">Revert this post to a private draft</div> | ||
<div class="gh-publishmenu-radio-desc">Revert this {{post.displayName}} to a private draft</div> | ||
</div> | ||
</div> | ||
<div class="gh-publishmenu-radio {{if (eq saveType "publish") "active"}}" {{action setSaveType "publish" on="click"}}> | ||
<div class="gh-publishmenu-radio-button" data-test-publishmenu-published-option></div> | ||
<div class="gh-publishmenu-radio-content"> | ||
<div class="gh-publishmenu-radio-label">Published</div> | ||
<div class="gh-publishmenu-radio-desc">Display this post publicly</div> | ||
<div class="gh-publishmenu-radio-desc">Display this {{post.displayName}} publicly</div> | ||
</div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters