Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rule "ion-item requires an ion-label component" does not work with two labels #119

Open
NiklasMerz opened this issue Jul 24, 2019 · 0 comments

Comments

@NiklasMerz
Copy link

The rule ion-item requires an ion-label component is throwing errors for items with two or more labels.

Test to reproduce:

Add to first describe block in "ionItemIonLabelRequired.spec.ts"

it('should work with two ion-label children', () => {
      let source = `
      @Component({
        template: \`
          <ion-item>
            <ion-thumbnail slot="start">
              <img src="http://pngimg.com/upload/dog_png2402.png">
            </ion-thumbnail>
            <ion-label *ngIf="something">Dog</ion-label>
            <ion-label *ngIf="!something" >Dog</ion-label>
          </ion-item>
        \`
      })
      class Bar{}
        `;
      assertSuccess(ruleName, source);
    });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant