0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

fixed linter errors

no refs
This commit is contained in:
Steve Larson 2023-05-11 08:14:11 -05:00
parent 26389507ed
commit 080a1c92d8
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
<header class="modal-header">
<h1>Editor beta feedback</h1>
</header>
<a class="close" href="" role="button" title="Close" {{action "closeModal"}}>{{svg-jar "close"}}<span
<a class="close" href="" role="button" title="Close" {{on "click" this.closeModal}}>{{svg-jar "close"}}<span
class="hidden">Close</span></a>
<div class="modal-body gh-modal-feedback-lexical">
@ -27,7 +27,7 @@
</div>
<div class="modal-footer">
<button class="gh-btn" type="button" {{action "closeModal" }}><span>Cancel</span></button>
<button class="gh-btn" type="button" {{on "click" this.closeModal}}><span>Cancel</span></button>
<GhTaskButton
@buttonText="Send feedback"
@task={{this.submitFeedback}}

View file

@ -207,7 +207,7 @@
<h4 class="gh-expandable-title">Lexical editor</h4>
<p class="gh-expandable-description">
{{#if (feature 'lexicalEditor')}}
<span>Makes lexical editor the default when creating new posts/pages. Any issues? Feedback?</span><button class="green ml1" role="button" {{on "click" this.openFeedbackLexical}} data-test-button="lexical-feedback">Let us know</button>
<span>Makes lexical editor the default when creating new posts/pages. Any issues? Feedback?</span><button class="green ml1" type="button" {{on "click" this.openFeedbackLexical}} data-test-button="lexical-feedback">Let us know</button>
{{else}}
<span>Makes lexical editor the default when creating new posts/pages.</span>
{{/if}}