@@ -85,7 +85,7 @@ export default class BrowserCell extends Component {
8585 }
8686
8787 content = this . props . onPointerClick ? (
88- < Pill value = { dataValue } onClick = { this . props . onPointerClick . bind ( undefined , this . props . value ) } followClick = { true } />
88+ < Pill value = { dataValue } onClick = { this . props . onPointerClick . bind ( undefined , this . props . value ) } followClick = { true } shrinkablePill />
8989 ) : (
9090 dataValue
9191 ) ;
@@ -102,7 +102,7 @@ export default class BrowserCell extends Component {
102102 const object = new Parse . Object ( v . className ) ;
103103 object . id = v . objectId ;
104104 array . push (
105- < Pill key = { i } value = { v . objectId } onClick = { this . props . onPointerClick . bind ( undefined , object ) } followClick = { true } />
105+ < Pill key = { i } value = { v . objectId } onClick = { this . props . onPointerClick . bind ( undefined , object ) } followClick = { true } shrinkablePill />
106106 ) ;
107107 } ) ;
108108 this . copyableValue = content = < ul >
@@ -129,7 +129,7 @@ export default class BrowserCell extends Component {
129129 this . copyableValue = content = JSON . stringify ( this . props . value ) ;
130130 } else if ( this . props . type === 'File' ) {
131131 const fileName = this . props . value . url ( ) ? getFileName ( this . props . value ) : 'Uploading\u2026' ;
132- content = < Pill value = { fileName } fileDownloadLink = { this . props . value . url ( ) } /> ;
132+ content = < Pill value = { fileName } fileDownloadLink = { this . props . value . url ( ) } shrinkablePill /> ;
133133 this . copyableValue = fileName ;
134134 } else if ( this . props . type === 'ACL' ) {
135135 let pieces = [ ] ;
@@ -159,7 +159,7 @@ export default class BrowserCell extends Component {
159159 } else if ( this . props . type === 'Relation' ) {
160160 content = this . props . setRelation ? (
161161 < div style = { { textAlign : 'center' } } >
162- < Pill onClick = { ( ) => this . props . setRelation ( this . props . value ) } value = 'View relation' followClick = { true } />
162+ < Pill onClick = { ( ) => this . props . setRelation ( this . props . value ) } value = 'View relation' followClick = { true } shrinkablePill />
163163 </ div >
164164 ) : (
165165 'Relation'
0 commit comments