Fix/workspace health type (#4053)

* fix: memory issue with truncate command

* fix: LINK doesn't have any default value

* fix: Cannot convert LINK to column type.

* fix: handle old column type and add a warn to fix them manually
This commit is contained in:
Jérémy M
2024-02-19 17:28:40 +01:00
committed by GitHub
parent 4a95798411
commit e293abe332
5 changed files with 77 additions and 36 deletions

View File

@ -17,6 +17,11 @@ export function generateDefaultValue(
firstName: '',
lastName: '',
};
case FieldMetadataType.LINK:
return {
url: '',
label: '',
};
default:
return null;
}