Limit render of Done Editing button to cell types that support annotations

pull/10616/head
Alex P 2018-03-28 10:36:41 -07:00 committed by Iris Scholten
parent 5863a5e764
commit f3cdfa923d
1 changed files with 10 additions and 9 deletions

View File

@ -96,16 +96,17 @@ class LayoutCellMenu extends Component {
/>
</div>
)}
{mode === 'editing' && (
<div className="dash-graph-context--buttons">
<div
className="btn btn-xs btn-success"
onClick={onDismissEditingAnnotation}
>
Done Editing
{mode === 'editing' &&
cellSupportsAnnotations(cell.type) && (
<div className="dash-graph-context--buttons">
<div
className="btn btn-xs btn-success"
onClick={onDismissEditingAnnotation}
>
Done Editing
</div>
</div>
</div>
)}
)}
</div>
)
}