open-nomad/ui/app/templates/components/attributes-table.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
487 B
Handlebars
Raw Normal View History

{{!
Copyright (c) HashiCorp, Inc.
SPDX-License-Identifier: MPL-2.0
}}
<table class="table is-striped is-fixed is-compact is-darkened no-mobile-condense" ...attributes>
2017-09-19 14:47:10 +00:00
<thead>
<tr>
<th class="is-one-third">Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<AttributesSection @attributes={{@attributePairs}}
@editable={{@editable}}
@onKVEdit={{@onKVEdit}}
@onKVSave={{@onKVSave}}
@copyable={{@copyable}}
/>
2017-09-19 14:47:10 +00:00
</tbody>
</table>