diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-15 14:38:28 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-11-21 22:54:21 +0000 |
commit | be8afc2c12efcc6734ce813e12fefeb792d04867 (patch) | |
tree | 6056c9cf86ae79cd3c50b10ab6f29a4dd22de303 /apps | |
parent | 6a2e7632d17eb2b239aad068ba1dcd1252d6ae0f (diff) | |
download | nextcloud-server-be8afc2c12efcc6734ce813e12fefeb792d04867.tar.gz nextcloud-server-be8afc2c12efcc6734ce813e12fefeb792d04867.zip |
Reset mountpoint input field when creating new mount
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/js/settings.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 586b9af7a88..3152c644b32 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -701,6 +701,7 @@ MountConfigListView.prototype = _.extend({ var storageConfig = new this._storageConfigClass(); storageConfig.mountPoint = $tr.find('.mountPoint input').val(); storageConfig.backend = $target.val(); + $tr.find('.mountPoint input').val(''); $tr = this.newStorage(storageConfig); |