99185e2d8f
* Remove the newline after .hbs copyright headers * Trying with the whitespace control char
21 lines
703 B
Handlebars
21 lines
703 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: MPL-2.0
|
|
~}}
|
|
|
|
<tr data-test-entry>
|
|
<td>
|
|
<Fs::Link @allocation={{this.allocation}} @taskState={{this.taskState}} @path={{this.pathToEntry}}>
|
|
{{#if this.entry.IsDir}}
|
|
{{x-icon "folder-outline"}}
|
|
{{else}}
|
|
{{x-icon "file-outline"}}
|
|
{{/if}}
|
|
|
|
<span class="name" data-test-name>{{this.entry.Name}}</span>
|
|
</Fs::Link>
|
|
</td>
|
|
<td class="has-text-right" data-test-size>{{#unless this.entry.IsDir}}{{format-bytes this.entry.Size}}{{/unless}}</td>
|
|
<td class="has-text-right" title={{format-ts this.entry.ModTime}} data-test-last-modified>{{moment-from this.entry.ModTime interval=1000}}</td>
|
|
</tr>
|