feat: add notes for creation of apps and integrations in widget edit modal (#1297)

* feat: add notes for creation of apps and integrations in widget edit modal

* fix: unit test failing when with-description flag missing
This commit is contained in:
Meier Lukas
2024-10-16 21:44:28 +02:00
committed by GitHub
parent a0cc31da70
commit e99fd64882
4 changed files with 59 additions and 9 deletions

View File

@@ -104,10 +104,10 @@ const optionsFactory = {
values: [] as string[],
validate: input?.validate,
}),
app: (input?: Omit<CommonInput<string>, "defaultValue">) => ({
app: () => ({
type: "app" as const,
defaultValue: "",
withDescription: input?.withDescription ?? false,
withDescription: false,
}),
};