mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Change textarea size to 100 row
This commit is contained in:
parent
357b659fc0
commit
7fc1f37aed
2 changed files with 2 additions and 2 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue