fix: disable unfinished features
This commit is contained in:
parent
8ad127c6c4
commit
f4f4eb1335
6 changed files with 67 additions and 37 deletions
|
|
@ -207,17 +207,19 @@ const EditableCard = ({
|
|||
<div className={classes.edit}>
|
||||
{!editing && (
|
||||
<div className={classes.editButton}>
|
||||
<div className={classes.deleteButton}>
|
||||
<ActionButton
|
||||
color="primary"
|
||||
type="button"
|
||||
Icon={DeleteIcon}
|
||||
InverseIcon={DeleteReversedIcon}
|
||||
onClick={() => deleteEditedData()}>
|
||||
{`Delete`}
|
||||
</ActionButton>
|
||||
</div>
|
||||
|
||||
{// TODO: Remove false condition for next release
|
||||
false && (
|
||||
<div className={classes.deleteButton}>
|
||||
<ActionButton
|
||||
color="primary"
|
||||
type="button"
|
||||
Icon={DeleteIcon}
|
||||
InverseIcon={DeleteReversedIcon}
|
||||
onClick={() => deleteEditedData()}>
|
||||
{`Delete`}
|
||||
</ActionButton>
|
||||
</div>
|
||||
)}
|
||||
<ActionButton
|
||||
color="primary"
|
||||
Icon={EditIcon}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue