open-vault/ui/stories/info-table-row.md
Matthew Irish 0ccc8467ec
UI ember engines (#6718)
Adds replication engine and core in-repo addon
2019-05-13 14:05:25 -05:00

1.3 KiB

InfoTableRow

InfoTableRow displays a label and a value in a table-row style manner. The component is responsive so that the value breaks under the label on smaller viewports.

Param Type Default Description
value any The the data to be displayed - by default the content of the component will only show if there is a value. Also note that special handling is given to boolean values - they will render Yes for true and No for false.
label string null The display name for the value.
alwaysRender Boolean false Indicates if the component content should be always be rendered. When false, the value of value will be used to determine if the component should render.

Example

<InfoTableRow @value={{5}} @label="TTL" />

See