From 3f52ebea6fe2a3e92173055ffbfa9f3c7de50106 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 27 Oct 2021 13:24:22 +0000 Subject: [PATCH] chore(): add missing comma --- core/src/components/item/item.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx index f655bc5d38..b59262ed44 100644 --- a/core/src/components/item/item.tsx +++ b/core/src/components/item/item.tsx @@ -350,7 +350,7 @@ export class Item implements ComponentInterface, AnchorInterface, ButtonInterfac 'in-list': hostContext('ion-list', this.el), 'item-multiple-inputs': this.multipleInputs, 'ion-activatable': canActivate, - 'ion-focusable': this.focusable + 'ion-focusable': this.focusable, 'item-rtl': document.dir === 'rtl' }) }}