Skip to content

Commit 088eb51

Browse files
committed
fix(select-modal): run lint
1 parent 2e73d89 commit 088eb51

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

core/src/components/modal/modal.ionic.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@
6464
*/
6565
:host(.modal-sheet) {
6666
--height: calc(100% - (var(--ion-safe-area-top) + #{globals.$ion-scale-250}));
67-
}
67+
}

core/src/components/select-modal/select-modal.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,12 @@ export class SelectModal implements ComponentInterface {
151151

152152
render() {
153153
return (
154-
<Host class={{
155-
[getIonMode(this)]: true,
156-
...this.getModalContextClasses(),
157-
}}>
154+
<Host
155+
class={{
156+
[getIonMode(this)]: true,
157+
...this.getModalContextClasses(),
158+
}}
159+
>
158160
<ion-header>
159161
<ion-toolbar>
160162
{this.header !== undefined && <ion-title>{this.header}</ion-title>}

0 commit comments

Comments
 (0)