We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e1089e commit 9764bdbCopy full SHA for 9764bdb
ui/js/src/kimchi.template_edit_main.js
@@ -339,7 +339,8 @@ kimchi.template_edit_main = function() {
339
});
340
341
$(storageRow + ' input.storage-path').on('change input keyup',function(){
342
- if($(storageRow + ' input.storage-path').val()){
+ var storagepath = $(storageRow + ' input.storage-path').val();
343
+ if( storagepath && storagepath.charAt(0) == '/'){
344
$(storageRow + ' span.storage-path').removeClass('has-error');
345
}else{
346
$(storageRow + ' span.storage-path').addClass('has-error');
0 commit comments