diff --git a/app/components/ProgramSequenceView.tsx b/app/components/ProgramSequenceView.tsx index 7503707..1402411 100644 --- a/app/components/ProgramSequenceView.tsx +++ b/app/components/ProgramSequenceView.tsx @@ -120,6 +120,15 @@ class ProgramSequenceView extends React.Component<{ const { sequence, sections } = this.props; const editing = this.props.editing || false; const className = classNames("programSequence", { editing }); + let addButton: React.ReactNode = null; + if (editing) { + addButton = ( + + ); + } return (