Sha256: 5fc7610a73ae4118fa51ec54fb7b880f2c34f431e6662beafd060c5f33b9fb59

Contents?: true

Size: 391 Bytes

Versions: 5

Compression:

Stored size: 391 Bytes

Contents

import React from 'react';

export default class DisplayValue extends React.Component {
    static mixins = [
        Hippo.Components.Form.FieldMixin
    ];
    static fieldClassName = 'display-value';
    renderEdit(props) {
        return (
            <BS.FormControl.Static {...props}>
                {this.fieldMixinGetValue()}
            </BS.FormControl.Static>
        );
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
hippo-fw-0.9.5 client/hippo/components/shared/DisplayValue.jsx
hippo-fw-0.9.4 client/hippo/components/shared/DisplayValue.jsx
hippo-fw-0.9.3 client/hippo/components/shared/DisplayValue.jsx
hippo-fw-0.9.2 client/hippo/components/shared/DisplayValue.jsx
hippo-fw-0.9.1 client/hippo/components/shared/DisplayValue.jsx