github.com/hernad/nomad@v1.6.112/ui/app/templates/components/attributes-table.hbs (about) 1 {{! 2 Copyright (c) HashiCorp, Inc. 3 SPDX-License-Identifier: MPL-2.0 4 ~}} 5 6 <table class="table is-striped is-fixed is-compact is-darkened no-mobile-condense" ...attributes> 7 <thead> 8 <tr> 9 <th class="is-one-third">Name</th> 10 <th>Value</th> 11 </tr> 12 </thead> 13 <tbody> 14 <AttributesSection @attributes={{@attributePairs}} 15 @editable={{@editable}} 16 @onKVEdit={{@onKVEdit}} 17 @onKVSave={{@onKVSave}} 18 @copyable={{@copyable}} 19 /> 20 </tbody> 21 </table>