diff --git a/src/app/components/app-setup/app-setup.component.ts b/src/app/components/app-setup/app-setup.component.ts
index f4d582f4e61795b602b8a30d3e2aaf2353cab100..416cb16dcef0f455982d309cabf7e5000452f6b8 100644
--- a/src/app/components/app-setup/app-setup.component.ts
+++ b/src/app/components/app-setup/app-setup.component.ts
@@ -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);
     }