Skip to content

Commit f7f1d67

Browse files
committed
fix pill container BEM to single underscore
1 parent 696f3b5 commit f7f1d67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/scripts/Lookup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class LookupSelection<LookupEntry extends Entry> extends Component<
9393
const lookupClassNames = classnames({ 'slds-hide': hidden });
9494
return (
9595
<div ref={lookupSelectionRef} className={lookupClassNames}>
96-
<div className='slds-pill__container'>
96+
<div className='slds-pill_container'>
9797
{selected ? this.renderPill(selected) : undefined}
9898
</div>
9999
</div>

stories/PillStories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ storiesOf('Pill', module)
3737
'truncate',
3838
() => (
3939
<div style={{ width: '200px' }}>
40-
<div className='slds-pill__container'>
40+
<div className='slds-pill_container'>
4141
<Pill
4242
label='Pill Label that is longer than the area that contains it'
4343
truncate

0 commit comments

Comments
 (0)