Commit 3d21cb44 by Dányi Bence

webui: fix details glitch

parent 933b92a2
...@@ -63,7 +63,7 @@ $(function() { ...@@ -63,7 +63,7 @@ $(function() {
dataType: 'json', dataType: 'json',
url: '/ajax/vm/rename/' + id + '/', url: '/ajax/vm/rename/' + id + '/',
success: function(data) { success: function(data) {
$('#vm-' + id + '-name-details').show(); $('#vm-' + id + '-name-details').removeAttr('style');
$('#vm-' + id + '-name').html(data.name); $('#vm-' + id + '-name').html(data.name);
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment