Change textarea size to 100 row

This commit is contained in:
Anthony Corbacho 2016-10-24 17:48:37 +09:00
parent 357b659fc0
commit 7fc1f37aed
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ limitations under the License.
</span>
</span>
<span ng-show="setting.type === 'INPUT'">
<span editable-textarea="setting.selected" e-name="{{setting.name}}" e-form="valueform" e-msd-elastic>
<span editable-textarea="setting.selected" e-name="{{setting.name}}" e-form="valueform" e-msd-elastic e-cols="100">
{{setting.selected | breakFilter}}
</span>
</span>

View file

@ -326,7 +326,7 @@ public class VFSNotebookRepo implements NotebookRepo {
return;
}
LOG.warn("{} will change notebook dir from {} to {}",
getNotebookDirPath(), newNotebookDirectotyPath);
subject.getUser(), getNotebookDirPath(), newNotebookDirectotyPath);
try {
setNotebookDirectory(newNotebookDirectotyPath);
} catch (IOException e) {