Skip to content
Snippets Groups Projects
Commit 2d49a491 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Clear the mount point value for the new mount point row

parent f311c2a2
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,8 @@ $(document).ready(function() {
$('#selectBackend').live('change', function() {
var tr = $(this).parent().parent();
$('#externalStorage tbody').last().append($(tr).clone());
$('#externalStorage tbody').append($(tr).clone());
$('#externalStorage tbody tr').last().find('.mountPoint input').val('');
var selected = $(this).find('option:selected').text();
var backendClass = $(this).val();
$(this).parent().text(selected);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment