style(item): add spacing

This commit is contained in:
Brandy Carney
2018-04-09 11:25:02 -04:00
parent 2bfcc4f0a9
commit e02f9902a5

View File

@ -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);