Skip to content

Commit

Permalink
correct minor string addition syntax in serial warning rockstor#1086
Browse files Browse the repository at this point in the history
  • Loading branch information
phillxnet committed Jan 10, 2016
1 parent 3232e40 commit db6735f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ DisksView = Backbone.View.extend({
html += '<td>';
if (serial == null || serial == '' || serial == diskName || serial.length == 48) {
html += '<div class="alert alert-danger">' +
+ '<h4>Warning! Disk serial number or UUID is not legitimate or unique.</h4>' + warning +'</div>';
'<h4>Warning! Disk serial number or UUID is not legitimate or unique.</h4>' + warning +'</div>';
}else{
html += serial;
if (serial) {
Expand Down

0 comments on commit db6735f

Please sign in to comment.