From e02f9902a5e8008399bf347fa4a8daaf3e6ac49c Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Mon, 9 Apr 2018 11:25:02 -0400 Subject: [PATCH] style(item): add spacing --- core/src/components/item/item.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx index 71c05fbf1f..100f110aab 100644 --- a/core/src/components/item/item.tsx +++ b/core/src/components/item/item.tsx @@ -106,8 +106,8 @@ export class Item { : 'div'; const attrs = (TagType === 'button') - ? {type: 'button'} - : {href: this.href}; + ? { type: 'button' } + : { href: this.href }; const showDetail = this.detail != null ? this.detail : (this.mode === 'ios' && clickable);