2
0

🐛 Parse valid publicId even though the prefix is empty

This commit is contained in:
Baptiste Arnaud
2023-08-17 17:59:44 +02:00
parent 9cfca3857e
commit a4ba9a8a77
3 changed files with 6 additions and 4 deletions

View File

@@ -55,7 +55,7 @@ const Expression = ({
)
}
case 'Empty':
return <Text>Reset {variableName}</Text>
return <Text as="span">Reset {variableName}</Text>
case 'Random ID':
case 'Today':
case 'Now':

View File

@@ -1,4 +1,6 @@
import { toKebabCase } from '@/helpers/toKebabCase'
export const parseDefaultPublicId = (name: string, id: string) =>
toKebabCase(name) + `-${id?.slice(-7)}`
export const parseDefaultPublicId = (name: string, id: string) => {
const prefix = toKebabCase(name)
return `${prefix !== '' ? `${prefix}-` : ''}${id?.slice(-7)}`
}

View File

@@ -147,7 +147,7 @@ export const updateTypebot = authenticatedProcedure
resultsTablePreferences: typebot.resultsTablePreferences ?? undefined,
publicId: typebot.publicId ?? undefined,
customDomain: typebot.customDomain ?? undefined,
isClosed: typebot.isClosed ?? false,
isClosed: typebot.isClosed,
},
})