mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Fixed linting error
This commit is contained in:
parent
969cef0838
commit
25475e9a51
3 changed files with 6 additions and 4 deletions
|
@ -1866,3 +1866,5 @@ add|ember-template-lint|simple-unless|19|34|19|34|ca177565b6e1c5a617598204770873
|
|||
add|ember-template-lint|no-implicit-this|2|50|2|50|bd48f6e7d00782426eb9404abb796a62e1b1fddd|1646092800000|1648681200000|1651273200000|app/components/member/activity-feed.hbs
|
||||
remove|ember-template-lint|no-invalid-interactive|22|88|22|88|ef47bac5b5a1607201caa5962ff6e6e2b80fe871|1643760000000|1646352000000|1648940400000|app/components/gh-publishmenu-draft.hbs
|
||||
add|ember-template-lint|no-invalid-interactive|22|88|22|88|0f147010e9192fd3e2236d824b4e60aeeff4bd31|1646179200000|1648767600000|1651359600000|app/components/gh-publishmenu-draft.hbs
|
||||
remove|ember-template-lint|no-invalid-interactive|10|134|10|134|189785ab41f7fd0728185805080288951907c7fe|1643760000000|1646352000000|1648940400000|app/components/modal-portal-settings.hbs
|
||||
add|ember-template-lint|no-invalid-interactive|10|134|10|134|68bb5cb082102867d52b583bb276c4aa100d7cde|1646265600000|1648854000000|1651446000000|app/components/modal-portal-settings.hbs
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
<fieldset class="gh-portal-settings-form">
|
||||
<div class="gh-portal-setting-section {{if (not-eq this.settings.membersSignupAccess "all") "disabled-overlay"}}" onclick={{action "switchPreviewPage" "signup"}}>
|
||||
<h3 class="gh-portal-setting-sectionheading gh-stripe-connect">Signup options
|
||||
{{#if (not this.membersUtils.isStripeEnabled)}}
|
||||
<a class="gh-btn gh-btn-link black {{unless this.session.user.isAdmin "disabled"}}" type="button" {{on "click" (action "openStripeSettings")}}>Connect to Stripe</a>
|
||||
{{/if}}
|
||||
{{#unless this.membersUtils.isStripeEnabled}}
|
||||
<button class="gh-btn gh-btn-link {{unless this.session.user.isAdmin "disabled"}}" type="button" {{on "click" (action "openStripeSettings")}}>Connect to Stripe</button>
|
||||
{{/unless}}
|
||||
</h3>
|
||||
<GhFormGroup @classNames="gh-members-subscribed-checkbox gh-portal-setting-first mb0">
|
||||
<div class="flex justify-between items-center">
|
||||
|
|
|
@ -109,7 +109,7 @@
|
|||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.gh-portal-setting-sectionheading.gh-stripe-connect a {
|
||||
.gh-portal-setting-sectionheading.gh-stripe-connect .gh-btn-link {
|
||||
color: #6772E5;
|
||||
text-transform: initial;
|
||||
font-size: 1.25rem;
|
||||
|
|
Loading…
Add table
Reference in a new issue