DEV: Remove redundant braces (#23321)
This commit is contained in:
parent
2965519c76
commit
f6cd8e5968
|
@ -1,5 +1,5 @@
|
|||
<DButton
|
||||
@class={{"bulk-select"}}
|
||||
class="bulk-select"
|
||||
@action={{action "toggleBulkSelect"}}
|
||||
@icon={{"list"}}
|
||||
@icon="list"
|
||||
/>
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<div class="navigation-controls">
|
||||
{{#if (and this.notCategoriesRoute this.site.mobileView this.canBulk)}}
|
||||
<BulkSelectToggle @parentController={{"discovery/topics"}} @tagName="" />
|
||||
<BulkSelectToggle @parentController="discovery/topics" @tagName="" />
|
||||
{{/if}}
|
||||
|
||||
{{#if this.showCategoryAdmin}}
|
||||
|
|
|
@ -163,7 +163,7 @@
|
|||
@topic={{@model}}
|
||||
@showFullTitle={{false}}
|
||||
@appendReason={{false}}
|
||||
@placement={{"bottom-end"}}
|
||||
@placement="bottom-end"
|
||||
@showCaret={{false}}
|
||||
/>
|
||||
{{#if @mobileView}}
|
||||
|
|
|
@ -161,7 +161,7 @@
|
|||
<TogglePasswordMask
|
||||
@maskPassword={{this.maskPassword}}
|
||||
@togglePasswordMask={{this.togglePasswordMask}}
|
||||
@parentController={{"invites-show"}}
|
||||
@parentController="invites-show"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -25,10 +25,7 @@
|
|||
<div class="navigation-controls">
|
||||
{{#if this.site.mobileView}}
|
||||
{{#if this.currentUser.admin}}
|
||||
<BulkSelectToggle
|
||||
@parentController={{"user-topics-list"}}
|
||||
@tagName=""
|
||||
/>
|
||||
<BulkSelectToggle @parentController="user-topics-list" @tagName="" />
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<DButton
|
||||
@icon="discourse-expand"
|
||||
class="btn-flat btn-link chat-drawer-header__full-screen-btn"
|
||||
@title={{"chat.open_full_page"}}
|
||||
@title="chat.open_full_page"
|
||||
@action={{@openInFullPage}}
|
||||
/>
|
||||
{{/if}}
|
Loading…
Reference in New Issue