diff options
author | Christian Aigner <christian.aigner@huemer-it.com> | 2019-01-31 15:30:20 +0100 |
---|---|---|
committer | Backportbot <backportbot-noreply@rullzer.com> | 2019-02-01 09:47:07 +0000 |
commit | ce379309104c36481a5f8f6d323a95e19f55c920 (patch) | |
tree | 0e1c75ecb2c2a66fc25d92f2e12aa5009efcd030 /apps/files/js/filelist.js | |
parent | 5fe151f7c4bcc5b4a92aa0c915aab5099d3ae691 (diff) | |
download | nextcloud-server-ce379309104c36481a5f8f6d323a95e19f55c920.tar.gz nextcloud-server-ce379309104c36481a5f8f6d323a95e19f55c920.zip |
HBOX-297 trim in webfrontend for new files to stay compatible with windows
Diffstat (limited to 'apps/files/js/filelist.js')
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 232b47857bb..363f81a1a73 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2600,7 +2600,7 @@ } try { - var newName = input.val(); + var newName = input.val().trim(); input.tooltip('hide'); form.remove(); |