Skip to content

Commit

Permalink
refactor(input): lint and remove only
Browse files Browse the repository at this point in the history
  • Loading branch information
thetaPC committed May 6, 2024
1 parent 6302493 commit 2a87fee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/components/input/input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ export class Input implements ComponentInterface {
private getShape() {
const theme = getIonTheme(this);
const { shape } = this;
if (theme === 'ios' && shape === 'round') {
if (theme === 'ios' && shape === 'round') {
printIonWarning(`The "${shape}" shape is not supported in the ${theme} theme.`);
return undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion core/src/components/input/test/fill/input.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ configs({ modes: ['ionic-md'] }).forEach(({ title, screenshot, config }) => {
await expect(input).toHaveScreenshot(screenshot(`input-fill-outline-label-stacked`));
});

test.only('should not have visual regressions with outline fill and large size', async ({ page }) => {
test('should not have visual regressions with outline fill and large size', async ({ page }) => {
await page.setContent(
`
<ion-input
Expand Down

0 comments on commit 2a87fee

Please sign in to comment.