Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardsnj committed Dec 5, 2024
1 parent 44eff9c commit cf4664d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions JS/gnome.js
Original file line number Diff line number Diff line change
Expand Up @@ -3239,7 +3239,7 @@ function GNOmeBrowserBase (DIVID) {
};
let caption = document.createElement("figcaption");
caption.innerHTML = gtcid;

if (this.restriction && this.ShowRestrictionFlag && this.SubsumptionData[n] !== undefined) {
if (this.SubsumptionData[gtcid].InRestriction) {
caption.innerHTML += "*";
}
Expand Down Expand Up @@ -3905,9 +3905,7 @@ function GNOmeBrowserBase (DIVID) {
res.ScreenBTitle = this.ScreenBTitle;

return JSON.parse(JSON.stringify(res));
}


};

}

Expand Down

0 comments on commit cf4664d

Please sign in to comment.