aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js')
-rw-r--r--server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js b/server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js
index 0c3884b288b..5f807976d4d 100644
--- a/server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js
+++ b/server/sonar-web/src/main/js/apps/settings/components/inputs/PropertySetInput.js
@@ -104,7 +104,8 @@ export default class PropertySetInput extends React.PureComponent {
</thead>
<tbody>
{displayedValue.map((fieldValues, index) =>
- this.renderFields(fieldValues, index, index === displayedValue.length - 1))}
+ this.renderFields(fieldValues, index, index === displayedValue.length - 1)
+ )}
</tbody>
</table>
</div>