Render task ID instead of name in TICKscript controls

This ensures a newly created tickscript does not have a blank space here
pull/3111/head
Alex P 2018-04-02 17:03:52 -07:00
parent 45b2a9786b
commit 1579da3541
1 changed files with 1 additions and 1 deletions

View File

@ -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} />