0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Fixed linting errors

This commit is contained in:
Sodbileg Gansukh 2024-08-13 13:24:57 +08:00
parent 320e4f9996
commit 65b52c37a0
2 changed files with 14 additions and 14 deletions

View file

@ -7,7 +7,9 @@
<header class="modal-header">
<h1>
{{#unless this.post.isScheduled}}
{{#if this.post.isScheduled}}
<span>All set!</span>
{{else}}
<span>Boom! It's out there.</span>
<span>
{{#if this.post.emailOnly}}
@ -20,9 +22,7 @@
{{/if}}
{{/if}}
</span>
{{else}}
<span>All set!</span>
{{/unless}}
{{/if}}
</h1>
</header>
@ -63,7 +63,7 @@
{{/let}}
{{/if}}
{{#let (moment-site-tz post.publishedAtUTC) as |publishedAt|}}
{{#let (moment-site-tz this.post.publishedAtUTC) as |publishedAt|}}
on
{{moment-format publishedAt "D MMM YYYY"}}
at

View file

@ -34,19 +34,15 @@
{{moment-format publishedAt "HH:mm"}}
{{/let}}
</div>
{{#unless (feature "publishFlowEndScreen")}}
<LinkTo @route="lexical-editor.edit" @models={{array this.post.displayName this.post.id}} class="gh-post-list-cta edit" title="">
{{svg-jar "pen" title=""}}<span>Edit post</span>
</LinkTo>
{{else}}
{{#if (feature "publishFlowEndScreen")}}
<div style="display: flex; gap: 4px;">
{{#if (feature "publishFlowEndScreen")}}
<button class="gh-post-list-cta edit" {{on "click" this.fetchPostTask.perform}}>
<button type="button" class="gh-post-list-cta edit" {{on "click" this.fetchPostTask.perform}}>
{{svg-jar "reload" title="Refresh post analytics"}}<span>Refresh</span>
</button>
{{/if}}
{{#unless this.post.emailOnly}}
<button class="gh-post-list-cta edit" {{on "click" this.togglePublishFlowModal}}>
<button type="button" class="gh-post-list-cta edit" {{on "click" this.togglePublishFlowModal}}>
{{svg-jar "share" title="Share post"}}<span>Share</span>
</button>
{{/unless}}
@ -73,7 +69,7 @@
<LinkTo @route="lexical-editor.edit" @models={{array this.post.displayName this.post.id}}>Edit post</LinkTo>
</li>
<li>
<a href="{{this.post.url}}" target="_blank" rel="noreferrer">View in browser</a>
<a href="{{this.post.url}}" target="_blank" rel="noopener noreferrer">View in browser</a>
</li>
<li>
<button
@ -88,7 +84,11 @@
</GhDropdown>
</span>
</div>
{{/unless}}
{{else}}
<LinkTo @route="lexical-editor.edit" @models={{array this.post.displayName this.post.id}} class="gh-post-list-cta edit" title="">
{{svg-jar "pen" title=""}}<span>Edit post</span>
</LinkTo>
{{/if}}
</div>
</div>
</GhCanvasHeader>