open-consul/ui-v2/app/components/consul-metadata-list
John Cowen 9a539f0340
ui: Token listing redesign (#8117)
2020-06-17 10:25:54 +01:00
..
README.mdx ui: Token listing redesign (#8117) 2020-06-17 10:25:54 +01:00
index.hbs UI Release Merge (1.8-beta-2: ui-staging merge) (#7919) 2020-05-19 17:18:04 +01:00
index.js

README.mdx

## ConsulMetadataList

`<ConsulMetadataList @items={{meta}} />`

A presentational component for presenting Consul Metadata

### Arguments

| Argument/Attribute | Type | Default | Description |
| --- | --- | --- | --- |
| `items` | `array` |  | An array of entries or `[key, value]` pairs as returned by `Object.entries()` |

### Example

The following example shows how to construct the required structure from the
Consul API using a `object-entries` helper.

```handlebars
  <ConsulMetadataList @items={{object-entries item.Meta}} />
```

### See

- [Component Source Code](./index.js)
- [TemplateSource Code](./index.hbs)

---