We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 385c388 commit bea4493Copy full SHA for bea4493
packages/frontend/src/components/EditorLayout/index.tsx
@@ -205,14 +205,12 @@ export default function EditorLayout() {
205
</Box>
206
207
<Flex>
208
- {!loading && (
209
- <EditableInput
210
- value={flow?.name}
211
- onSave={onFlowNameUpdate}
212
- readOnly={isEditorReadOnly}
213
- width={isMobile ? '40%' : undefined}
214
- />
215
- )}
+ <EditableInput
+ value={flow?.name}
+ onSave={onFlowNameUpdate}
+ readOnly={loading}
+ width={isMobile ? '40%' : undefined}
+ />
216
</Flex>
217
218
0 commit comments