mirror of https://github.com/apache/cloudstack.git
cloudStack UI - Secondary Storage page - fix a bug "secondRowText is not defined".
This commit is contained in:
parent
3098db2b31
commit
8b514c79a5
|
|
@ -68,7 +68,7 @@ function secondaryStorageToMidmenu(jsonObj, $midmenuItem1) {
|
|||
$midmenuItem1.find("#first_row").text(firstRowText.substring(0,midMenuFirstRowLength));
|
||||
$midmenuItem1.find("#first_row_container").attr("title", firstRowText);
|
||||
|
||||
var secondRowText = fromdb(jsonObj.id);
|
||||
var secondRowText = fromdb(jsonObj.id).toString();
|
||||
$midmenuItem1.find("#second_row").text(secondRowText.substring(0,midMenuSecondRowLength));
|
||||
$midmenuItem1.find("#second_row_container").attr("title", secondRowText);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue