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

[4.0.0-beta.15-0] Edge ion-label not visible in ion-item #16168

Closed
ajmchambers opened this issue Nov 1, 2018 · 1 comment · Fixed by #16177
Closed

[4.0.0-beta.15-0] Edge ion-label not visible in ion-item #16168

ajmchambers opened this issue Nov 1, 2018 · 1 comment · Fixed by #16177
Labels

Comments

@ajmchambers
Copy link

Bug Report

Ionic Info
@ionic/core : 4.0.0-beta.15-0
Microsoft Edge 44.17763.1.0
Microsoft EdgeHTML 18.17763

Describe the Bug
An <ion-label> placed inside an <ion-item> is not visible on Edge.
In Chrome and IE11 it is shown correctly.

Removing the 'item' class from the <ion-item> makes the label visible again.

Placing an <ion-label> inside a <div class="item"> has the same result.

Side-by-side image of Chrome, Edge, IE11:
issue-image

Related Code

import { Component } from '@stencil/core';

@Component({
  tag: 'app-root'
})
export class AppRoot {
  render() {
    return (
      <ion-app>
        <ion-content padding>

          <ion-label>Test 1</ion-label>

          <hr />

          <ion-item>
            <ion-label>Test 2</ion-label>
          </ion-item>

          <hr />
          
          <div class="item">
            <ion-label>Test 3</ion-label>
          </div>

        </ion-content>
      </ion-app>
    );
  }
}

Expected Behavior
The <ion-label> should display the same in Edge as it does on the other browsers.

@ionitron-bot
Copy link

ionitron-bot bot commented Dec 1, 2018

Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.

@ionitron-bot ionitron-bot bot locked and limited conversation to collaborators Dec 1, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant