fix case sélectionnée dans table de résolution
This commit is contained in:
parent
192a530d58
commit
527ef35649
@ -205,8 +205,8 @@ export class RdDResolutionTable {
|
||||
let table = $("<table class='table-resolution'/>")
|
||||
.append(this._buildHTMLHeader(this.resolutionTable[0], minLevel, maxLevel));
|
||||
|
||||
for (var caracValue = minCarac; caracValue <= maxCarac; caracValue++) {
|
||||
table.append(this._buildHTMLRow(this.resolutionTable[caracValue], caracValue, caracValue, levelValue, minLevel, maxLevel));
|
||||
for (var rowIndex = minCarac; rowIndex <= maxCarac; rowIndex++) {
|
||||
table.append(this._buildHTMLRow(this.resolutionTable[rowIndex], rowIndex, caracValue, levelValue, minLevel, maxLevel));
|
||||
}
|
||||
return table;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user