Removed key and autofocus
This commit is contained in:
parent
e12b1fd522
commit
775bcee035
2 changed files with 1 additions and 2 deletions
|
|
@ -188,7 +188,6 @@ export default function GenericNode({
|
|||
{data.node?.flow && inputName ? (
|
||||
<div>
|
||||
<InputComponent
|
||||
autoFocus
|
||||
onBlur={() => {
|
||||
setInputName(false);
|
||||
if (nodeName.trim() !== "") {
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ export default function FlowPage(): JSX.Element {
|
|||
{flows.length > 0 &&
|
||||
tabId !== "" &&
|
||||
flows.findIndex((flow) => flow.id === tabId) !== -1 && (
|
||||
<Page key={id} flow={flows.find((flow) => flow.id === tabId)!} />
|
||||
<Page flow={flows.find((flow) => flow.id === tabId)!} />
|
||||
)}
|
||||
<a
|
||||
target={"_blank"}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue