Skip to content
Snippets Groups Projects
Commit 899c4617 authored by francois.grand's avatar francois.grand
Browse files

ticket #37 : correction du domaine de définition des précisions d'affichage et de calcul

parent 0845a1de
No related branches found
No related tags found
1 merge request!6Resolve "Amélioration mise en forme"
......@@ -26,10 +26,10 @@ export class ApplicationSetupComponent implements Observer {
private appSetupService: ApplicationSetupService,
private intlService: InternationalisationService
) {
this._displayPrec = new NgBaseParam("dp", ParamDomainValue.NOT_NULL, this.appSetupService.displayPrecision);
this._displayPrec = new NgBaseParam("dp", ParamDomainValue.POS, this.appSetupService.displayPrecision);
this._displayPrec.addObserver(this);
this._computePrec = new NgBaseParam("cp", ParamDomainValue.NOT_NULL, this.appSetupService.computePrecision);
this._computePrec = new NgBaseParam("cp", ParamDomainValue.POS, this.appSetupService.computePrecision);
this._computePrec.addObserver(this);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment