diff --git a/permutation-studio/src/Row.jsx b/permutation-studio/src/Row.jsx
index 6e13437..1ec2986 100644
--- a/permutation-studio/src/Row.jsx
+++ b/permutation-studio/src/Row.jsx
@@ -114,7 +114,7 @@ export default class Row {
/*
| */
var valueContainer = document.createElement('td')
@@ -123,7 +123,7 @@ export default class Row {
this.valueTA.setAttribute('class', 'form-control')
this.valueTA.setAttribute('name', `problem[${IdManager.pid}][${this.parentId}][text][${this.rowId}]`)
this.valueTA.setAttribute('placeholder', this._get_value_placeholder())
- this.valueTA.style.whiteSpace = 'nowrap';
+ this.valueTA.style.whiteSpace = 'normal';
this.valueTA.style.resize = 'vertical';
this.valueTA.innerHTML = this.value;
valueContainer.appendChild(this.valueTA)