Commit 74ddfe07 by Hugo Häggmark Committed by GitHub

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

parent 28f54bc2
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment