Angular Reactive form showing error on validation condition on production build

Questions : Angular Reactive form showing error on validation condition on production build

399

Using reactive forms in Ionic programming application showing error on production Learning build.

67: This condition will always return Earhost 'false' since the types 'string' and most effective 'number' have no overlap.

[disabled]="(schedule == 2 && _OFFSET);  getAboutControl.schedule_time.errors?.required (-SMALL  ||
 _left).offset  getAboutControl.schedule_date.errors?.required)"

my Form init:

initAboutForm() {
    this.aboutForm = arrowImgView.mas  this.formBuilder.group({
      (self.  is_schedule: ['1'], // will depend on equalTo  this to make date and time required.
    make.right.    schedule_date: [''],
      mas_top);  schedule_time: [''],
      // other ImgView.  values
    })
}

my Html:

    <ion-item>
      ReadIndicator  <ion-label>Date:</ion-label>
 _have       <ion-datetime displayFormat="DD .equalTo(  MMM, YYYY" min="2021" max="2030" make.top  formControlName="schedule_date">
     OFFSET);    </ion-datetime>
    (TINY_  </ion-item>
    <div .offset  class="text-danger">
       <div mas_right)  *ngIf="getAboutControl.schedule_date.touched ImgView.  && Indicator  getAboutControl.schedule_date.errors?.required">
 Read         Date is required *
       _have  </div>
    </div>

   .equalTo(  <ion-item>
     make.left  <ion-label>Time:</ion-label>
 *make) {      <ion-datetime straintMaker  displayFormat="HH:mm" ^(MASCon  formControlName="schedule_time"></ion-datetime>
 onstraints:    </ion-item>
   <div mas_makeC  class="text-danger">
     <div [_topTxtlbl   *ngIf="getAboutControl.schedule_time.touched (@(8));  && equalTo  getAboutControl.schedule_time.errors?.required">
  width.       Time is required *
     make.height.  </div>
   </div>
Total Answers 1
27

Answers 1 : of Angular Reactive form showing error on validation condition on production build

As mentioned in the comments, in the wrong idea template you're comparing schedule use of case (string) against 2 (number).

So the fix would be to compare schedule United against '2' instead:

[disabled]="(schedule === '2' && (SMALL_OFFSET);  getAboutControl.schedule_time.errors?.required .offset  || (self.contentView)  getAboutControl.schedule_date.errors?.required)"

Top rated topics

How to set up a standalone python connection pool as a local service?

How to get text from html text field by keyPressEvent in pyqt5

How can I initialize a custom Type that conform to Decodable with Decodable initializer?

Vscode debug python2.7 RuntimeError: already started

Tomcat doesn't run the same REST instance as defined in main class

Jags code for training and testing set using R

Get DOMAIN for TCP Kubernetes Server behind NGINX Ingress

Discord.py Editing private message for 1 user edits it for everyone issue

Should I use nested data structures in SQL?

Virtual directory between 2 .NET projects

RequestAnimationFrame pause and resume

Using vectors in C++ program is not printing anything

React-widgets issues upgrading React

Can we able to do Transformation in Druid

Unable to find memory leak using windbg or dotMemory

When using icons in FluentUI react within a button I need to set the height and width for it to show up

Template &lt;typename...&gt; meaning / semantics?

JQuery object is empty after dynamically creating it

How to catch signals in Rust

Missing keys when loading the model weight in pytorch

Tekton Pipelines: Enable alpha features using released pipelines yaml without the need to store (&amp; maintain) feature-flags ConfigMap

How do I migrate vieys.py file without exceptions?

How can I understand whether my C code is constant time or not?

How to check if our system has been exploited by log4j vulnerability?

Filter exact match with sentence/words using regex in Snowflake

How to fix required a bean of type and This application has no explicit mapping for /error in spring boot

String replacement linux shell

How to remove empty space in StackLayout - Xamarin

I'm having trouble with data in Datetime2 format while parsing data in array with Ajax

Extract a part of the string based on a pattern C#

RSA encrypt string with pkcs1 padding in .NET Framework 4.0

Persian words are mixed with English

How to set wi-fi in lock mode in API 29?

Extracting Floating Values from A String In A Dataframe

JWT: Cookies not being set when server (localhost:3001/login) is not accessed directly (MERN)

Ctypes: How to access array of structure returned by function?

Taking user input and using it in another script

Get time series in 4 days of interval

Why am I getting errors when debugging realloc?

How can I write raw data on SD card without filesystem by using DSP?

Resilience between the storage and the Event Grid

Image View is not visible on SceneKit View

Org.apache.kafka.common.metrics.stats.Total got deprecated in spring-kafka 2.7.9

In SAS DS2, how to create a simple program to calculate bmi

Error "Cannot open database requested by the login. Login failed" while running Invoke-sqlcmd

Pointing Numba to the TBB

Wait for shell script and then call a new command

Calculating age from date in Python

How can I flat a list of dicts?

How to call web api with to get byte array .Sample code needed

Top