Skip to content

Commit 9764bdb

Browse files
rajatgupta21alinefm
authored andcommitted
Edit template storage path should start with "/"
Edit template storage path should start with "/" Signed-off-by: Rajat Gupta <[email protected]>
1 parent 2e1089e commit 9764bdb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/js/src/kimchi.template_edit_main.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,8 @@ kimchi.template_edit_main = function() {
339339
});
340340

341341
$(storageRow + ' input.storage-path').on('change input keyup',function(){
342-
if($(storageRow + ' input.storage-path').val()){
342+
var storagepath = $(storageRow + ' input.storage-path').val();
343+
if( storagepath && storagepath.charAt(0) == '/'){
343344
$(storageRow + ' span.storage-path').removeClass('has-error');
344345
}else{
345346
$(storageRow + ' span.storage-path').addClass('has-error');

0 commit comments

Comments
 (0)