Change select property type to text
This commit is contained in:
parent
531662b6ec
commit
fe8bf78305
1 changed files with 2 additions and 1 deletions
|
@ -142,9 +142,10 @@ class CardDetail extends React.Component<Props, State> {
|
|||
|
||||
<div className='octo-propertylist'>
|
||||
{board.cardProperties.map((propertyTemplate) => {
|
||||
const propertyValue = card.properties[propertyTemplate.id]
|
||||
return (
|
||||
<div
|
||||
key={propertyTemplate.id + '-' + propertyTemplate.type}
|
||||
key={propertyTemplate.id + '-' + propertyTemplate.type + '-' + propertyValue}
|
||||
className='octo-propertyrow'
|
||||
>
|
||||
{this.props.readonly && <div className='octo-propertyname'>{propertyTemplate.name}</div>}
|
||||
|
|
Loading…
Reference in a new issue