Render task ID instead of name in TICKscript controls
This ensures a newly created tickscript does not have a blank space herepull/3111/head
parent
45b2a9786b
commit
1579da3541
|
@ -19,7 +19,7 @@ const TickscriptEditorControls = ({
|
|||
{isNewTickscript ? (
|
||||
<TickscriptID onChangeID={onChangeID} id={task.id} />
|
||||
) : (
|
||||
<TickscriptStaticID id={task.name} />
|
||||
<TickscriptStaticID id={task.id} />
|
||||
)}
|
||||
<div className="tickscript-controls--right">
|
||||
<TickscriptType type={task.type} onChangeType={onChangeType} />
|
||||
|
|
Loading…
Reference in New Issue