mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Removed page title indicator when feature image is present (#17268)
Refs https://github.com/TryGhost/Product/issues/3559
This commit is contained in:
parent
f50e878cb2
commit
4773ac31f0
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@
|
|||
{{else if @image}}
|
||||
{{!-- image is present --}}
|
||||
{{#if @isHidden}}
|
||||
<span class="gh-editor-hidden-indicator" data-tooltip="Feature image is hidden on page">
|
||||
<span class="gh-editor-hidden-indicator" data-tooltip="Feature image and post title are hidden on page">
|
||||
{{svg-jar "eye-closed"}}
|
||||
</span>
|
||||
{{else}}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
/>
|
||||
|
||||
<div class="gh-editor-title-container {{if (feature "pageImprovements") "page-improvements"}}">
|
||||
{{#if (and (feature 'pageImprovements') (not @cardOptions.post.showTitleAndFeatureImage))}}
|
||||
{{#if (and (feature 'pageImprovements') (not @cardOptions.post.showTitleAndFeatureImage) (not @featureImage))}}
|
||||
<span class="gh-editor-hidden-indicator" data-tooltip="Post title is hidden on page">
|
||||
{{svg-jar "eye-closed"}}
|
||||
</span>
|
||||
|
|
Loading…
Add table
Reference in a new issue