Display labels in image info
parent
015eb94b0f
commit
d5efb86d83
|
@ -60,6 +60,17 @@ export default class RepoConfig extends React.Component {
|
|||
))}
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
<div className="row">
|
||||
<div className="col-md-3">
|
||||
<b>Lables:</b>
|
||||
</div>
|
||||
<div className="col-md-9">
|
||||
{this.props.config.Labels && Object.keys(this.props.config.Labels).map((label, index) => (
|
||||
<div key={index}>{label} : {this.props.config.Labels[label]}</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue