diff --git a/packages/db/src/Component/ScriptTable.tsx b/packages/db/src/Component/ScriptTable.tsx
index 7a6c94c9..b84b3197 100644
--- a/packages/db/src/Component/ScriptTable.tsx
+++ b/packages/db/src/Component/ScriptTable.tsx
@@ -121,7 +121,7 @@ const DialogueRow = (props: {
/>
)}
- {showScriptLine &&
{props.lineNumber} | }
+ {showScriptLine && {props.lineNumber} | }
);
};
@@ -230,7 +230,7 @@ const ChoiceRow = ({
);
})}
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
}
@@ -260,7 +260,7 @@ const ChoiceRow = ({
))}
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
};
@@ -408,7 +408,7 @@ const SceneRow = (props: {
) : null}
- {showScriptLine && {props.lineNumber} | }
+ {showScriptLine && {props.lineNumber} | }
);
}
@@ -471,7 +471,7 @@ const SceneRow = (props: {
) : null}
- {showScriptLine && {props.lineNumber} | }
+ {showScriptLine && {props.lineNumber} | }
);
};
@@ -533,7 +533,7 @@ const ScriptBracketRow = (props: {
|
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.CRI_MOVIE:
@@ -545,7 +545,7 @@ const ScriptBracketRow = (props: {
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.SOUND_EFFECT:
@@ -555,7 +555,7 @@ const ScriptBracketRow = (props: {
|
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.CUE_SOUND_EFFECT:
@@ -565,7 +565,7 @@ const ScriptBracketRow = (props: {
|
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.FLAG:
@@ -575,7 +575,7 @@ const ScriptBracketRow = (props: {
Set flag {component.name} to {component.value}
|
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.BRANCH:
@@ -593,7 +593,7 @@ const ScriptBracketRow = (props: {
Go to label {component.labelName}
{condition} {getGoToLabel(component.labelName)}
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.BRANCH_QUEST_NOT_CLEAR:
@@ -605,7 +605,7 @@ const ScriptBracketRow = (props: {
hasn't been cleared{" "}
{getGoToLabel(component.labelName)}
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.BRANCH_MASTER_GENDER:
@@ -617,7 +617,7 @@ const ScriptBracketRow = (props: {
chosen gender is male or {component.femaleLabelName}
{" "}
{getGoToLabel(component.femaleLabelName)} if female
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
case ScriptComponentType.LABEL:
@@ -627,7 +627,7 @@ const ScriptBracketRow = (props: {
{component.name}
|
- {showScriptLine && {lineNumber} | }
+ {showScriptLine && {lineNumber} | }
);
default: