mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03: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
@ -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…
Reference in New Issue
Block a user