2
0

(setVariable) Add Transcription system var (#1507)

Closes #1484
This commit is contained in:
Baptiste Arnaud
2024-05-15 14:24:55 +02:00
committed by GitHub
parent ec7ff8d9ca
commit 40f21203b5
102 changed files with 2911 additions and 986 deletions

View File

@@ -95,6 +95,7 @@ type VariableToParseInformation = {
endIndex: number
textToReplace: string
value: string
variableId?: string
}
export const getVariablesToParseInfoInText = (
@@ -146,6 +147,7 @@ export const getVariablesToParseInfoInText = (
? variable?.value[variable?.value.length - 1]
: variable?.value
) ?? '',
variableId: variable?.id,
})
})
return variablesToParseInfo.sort((a, b) => a.startIndex - b.startIndex)