HBOX-297 trim in webfrontend for new files to stay compatible with windows

This commit is contained in:
Christian Aigner 2019-01-31 15:30:20 +01:00 committed by Backportbot
parent 5fe151f7c4
commit ce37930910
2 changed files with 2 additions and 2 deletions

View File

@ -2600,7 +2600,7 @@
}
try {
var newName = input.val();
var newName = input.val().trim();
input.tooltip('hide');
form.remove();

View File

@ -167,7 +167,7 @@
event.preventDefault();
if (checkInput()) {
var newname = $input.val();
var newname = $input.val().trim();
/* Find the right actionHandler that should be called.
* Actions is retrieved by using `actionSpec.id` */