Admin Settings: makes long settings line break (#24559)

This commit is contained in:
Hugo Häggmark 2020-05-12 10:54:25 +02:00 committed by GitHub
parent 28f54bc2f7
commit 74ddfe07a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ export class AdminSettings extends React.PureComponent<Props, State> {
{Object.entries(sectionSettings).map(([settingName, settingValue], j) => (
<tr key={`property-${j}`}>
<td style={{ paddingLeft: '25px' }}>{settingName}</td>
<td>{settingValue}</td>
<td style={{ whiteSpace: 'break-spaces' }}>{settingValue}</td>
</tr>
))}
</React.Fragment>