Skip to content

Commit 6ced157

Browse files
committed
test(action-sheet): strip code
1 parent a42ad86 commit 6ced157

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

core/src/components/action-sheet/action-sheet.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,6 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
388388
<div tabindex="0"></div>
389389

390390
<div class="action-sheet-wrapper ion-overlay-wrapper" ref={(el) => (this.wrapperEl = el)}>
391-
<div class="action-sheet-container">
392391
<div class="action-sheet-group" ref={(el) => (this.groupEl = el)}>
393392
{header !== undefined && (
394393
<div
@@ -410,7 +409,6 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
410409
class={buttonClass(b)}
411410
onClick={() => this.buttonClick(b)}
412411
disabled={b.disabled}
413-
tabIndex={b.disabled ? -1 : 0}
414412
>
415413
<span class="action-sheet-button-inner">
416414
{b.icon && <ion-icon icon={b.icon} aria-hidden="true" lazy={false} class="action-sheet-icon" />}
@@ -444,7 +442,6 @@ export class ActionSheet implements ComponentInterface, OverlayInterface {
444442
</button>
445443
</div>
446444
)}
447-
</div>
448445
</div>
449446

450447
<div tabindex="0"></div>

0 commit comments

Comments
 (0)