Skip to content
Snippets Groups Projects

Resolve "Solveur: Les select d'une session chargée ne s'initialise pas"

2 files
+ 14
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -23,11 +23,12 @@ export class SelectFieldSearchedParam extends SelectField {
ntc,
solv.targettedResult !== undefined && solv.targettedResult !== ""
);
for (const p of searchableParams) {
if (p.visible) {
const calc = fs.getFormulaireFromId(p.originNub.uid).calculatorName;
const calcTitle = fs.getTitlebyIdOnSelectedLoadedNubs(p.originNub.uid).title;
const varName = fs.expandVariableName(p.originNub.calcType, p.symbol);
const label = `${p.symbol} - ${varName} (${calc})`;
const label = `${p.symbol} - ${varName} (${calcTitle})`;
this.addEntry(this.createOrGetEntry(this._entriesBaseId + p.getParentComputeNode(false).uid + "_" + p.symbol, p, decodeHtml(label)));
}
}
Loading