Fix display bug..
This commit is contained in:
parent
2686beef13
commit
25261bab67
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ const url_tag = location.hash.slice(1);
|
|||
console.log(url_base);
|
||||
console.log(url_tag);
|
||||
|
||||
const BUILD_VERSION = "6.9.35";
|
||||
const BUILD_VERSION = "6.9.36";
|
||||
|
||||
function setTitle() {
|
||||
let text;
|
||||
|
|
|
@ -656,7 +656,7 @@ function displayExpandedItem(item, parent_id){
|
|||
}
|
||||
}
|
||||
}
|
||||
else if ( (rolledIDs.includes(id) && item.get("maxRolls").get(id)) ){ // && item.get("maxRolls").get(id) ){//rolled ID & non-0/non-null/non-und ID
|
||||
else if ( rolledIDs.includes(id) && item.get("maxRolls") && item.get("maxRolls").get(id) ){ // && item.get("maxRolls").get(id) ){//rolled ID & non-0/non-null/non-und ID
|
||||
let style = "positive";
|
||||
if (item.get("minRolls").get(id) < 0) {
|
||||
style = "negative";
|
||||
|
|
Loading…
Reference in a new issue