mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fixed table rendering issue.
This commit is contained in:
parent
8b310786b9
commit
da51c4b270
@ -223,11 +223,11 @@ class ApplicationListing extends Component {
|
||||
{this.headers.map(header => {
|
||||
if (header.data_id === "applicationName") {
|
||||
return (
|
||||
<Col xs="5"><FormattedMessage id={header.locale} defaultMessage={header.label}/></Col>)
|
||||
<Col xs="5">{header.label}</Col>)
|
||||
} else if (header.data_id === "image") {
|
||||
return (<Col xs="1">{header.label}</Col>)
|
||||
}
|
||||
return (<Col><FormattedMessage id={header.locale} defaultMessage={header.label}/></Col>)
|
||||
return (<Col>{header.label}</Col>)
|
||||
})}
|
||||
</Row>
|
||||
<hr/>
|
||||
|
||||
@ -44,12 +44,7 @@ class GeneralInfo extends Component {
|
||||
<Label for="app-title">
|
||||
<FormattedMessage id="Title" defaultMessage="Title"/>*
|
||||
</Label>
|
||||
<Input
|
||||
required
|
||||
type="text"
|
||||
name="appName"
|
||||
id="app-title"
|
||||
/>
|
||||
<Input required type="text" name="appName" id="app-title"/>
|
||||
</FormGroup>
|
||||
<FormGroup>
|
||||
<Label for="app-title">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user