DEV: Apply prettier to hbs files
This commit is contained in:
@@ -1,11 +1,7 @@
|
||||
<label class="hook-event">
|
||||
<Input
|
||||
@type="checkbox"
|
||||
@checked={{this.enabled}}
|
||||
name="event-choice"
|
||||
/>
|
||||
<Input @type="checkbox" @checked={{this.enabled}} name="event-choice" />
|
||||
|
||||
{{this.name}}
|
||||
|
||||
<p>{{this.details}}</p>
|
||||
</label>
|
||||
</label>
|
||||
@@ -36,4 +36,4 @@
|
||||
<pre><code>{{this.body}}</code></pre>
|
||||
</div>
|
||||
{{/if}}
|
||||
</li>
|
||||
</li>
|
||||
@@ -1,4 +1,5 @@
|
||||
<div class="web-hook-events-listing"
|
||||
<div
|
||||
class="web-hook-events-listing"
|
||||
{{did-insert this.subscribe}}
|
||||
{{will-destroy this.unsubscribe}}
|
||||
>
|
||||
@@ -14,16 +15,34 @@
|
||||
<LoadMore @selector=".web-hook-events li" @action={{this.loadMore}}>
|
||||
<div class="web-hook-events content-list">
|
||||
<div class="heading-container">
|
||||
<div class="col heading first status">{{i18n "admin.web_hooks.events.status"}}</div>
|
||||
<div class="col heading event-id">{{i18n "admin.web_hooks.events.event_id"}}</div>
|
||||
<div class="col heading timestamp">{{i18n "admin.web_hooks.events.timestamp"}}</div>
|
||||
<div class="col heading completion">{{i18n "admin.web_hooks.events.completion"}}</div>
|
||||
<div class="col heading actions">{{i18n "admin.web_hooks.events.actions"}}</div>
|
||||
<div class="col heading first status">{{i18n
|
||||
"admin.web_hooks.events.status"
|
||||
}}</div>
|
||||
<div class="col heading event-id">{{i18n
|
||||
"admin.web_hooks.events.event_id"
|
||||
}}</div>
|
||||
<div class="col heading timestamp">{{i18n
|
||||
"admin.web_hooks.events.timestamp"
|
||||
}}</div>
|
||||
<div class="col heading completion">{{i18n
|
||||
"admin.web_hooks.events.completion"
|
||||
}}</div>
|
||||
<div class="col heading actions">{{i18n
|
||||
"admin.web_hooks.events.actions"
|
||||
}}</div>
|
||||
</div>
|
||||
|
||||
{{#if this.hasIncoming}}
|
||||
<a href tabindex="0" {{on "click" this.showInserted}} class="alert alert-info clickable">
|
||||
<CountI18n @key="admin.web_hooks.events.incoming" @count={{this.incomingCount}} />
|
||||
<a
|
||||
href
|
||||
tabindex="0"
|
||||
{{on "click" this.showInserted}}
|
||||
class="alert alert-info clickable"
|
||||
>
|
||||
<CountI18n
|
||||
@key="admin.web_hooks.events.incoming"
|
||||
@count={{this.incomingCount}}
|
||||
/>
|
||||
</a>
|
||||
{{/if}}
|
||||
|
||||
@@ -39,4 +58,4 @@
|
||||
{{else}}
|
||||
<p>{{i18n "admin.web_hooks.events.none"}}</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,2 +1,2 @@
|
||||
{{d-icon this.iconName (hash class=this.iconClass)}}
|
||||
{{this.deliveryStatus}}
|
||||
{{this.deliveryStatus}}
|
||||
Reference in New Issue
Block a user