fix case sélectionnée dans table de résolution

This commit is contained in:
Vincent Vandemeulebrouck 2020-11-25 23:17:13 +01:00
parent 192a530d58
commit 527ef35649

View File

@ -205,8 +205,8 @@ export class RdDResolutionTable {
let table = $("<table class='table-resolution'/>") let table = $("<table class='table-resolution'/>")
.append(this._buildHTMLHeader(this.resolutionTable[0], minLevel, maxLevel)); .append(this._buildHTMLHeader(this.resolutionTable[0], minLevel, maxLevel));
for (var caracValue = minCarac; caracValue <= maxCarac; caracValue++) { for (var rowIndex = minCarac; rowIndex <= maxCarac; rowIndex++) {
table.append(this._buildHTMLRow(this.resolutionTable[caracValue], caracValue, caracValue, levelValue, minLevel, maxLevel)); table.append(this._buildHTMLRow(this.resolutionTable[rowIndex], rowIndex, caracValue, levelValue, minLevel, maxLevel));
} }
return table; return table;
} }