mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Admin Settings: makes long settings line break (#24559)
This commit is contained in:
parent
28f54bc2f7
commit
74ddfe07a2
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user