Skip to content

Commit 7d575c2

Browse files
committed
style: lint
1 parent 1470770 commit 7d575c2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

core/src/components/segment-button/segment-button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ export class SegmentButton implements ComponentInterface, ButtonInterface {
7676

7777
// Prevent buttons from being disabled when associated with segment content
7878
if (this.contentId && this.disabled) {
79-
printIonWarning(`Segment Button: Segment buttons cannot be disabled when associated with an <ion-segment-content>.`);
79+
printIonWarning(
80+
`Segment Button: Segment buttons cannot be disabled when associated with an <ion-segment-content>.`
81+
);
8082
this.disabled = false;
8183
}
8284
}

core/src/utils/sanitization/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { printIonError } from "@utils/logging";
1+
import { printIonError } from '@utils/logging';
22

33
/**
44
* Does a simple sanitization of all elements

0 commit comments

Comments
 (0)