Use strict equality check for annotation offset in object lifecycle settings (#14667)

This commit is contained in:
Josh Hawkins
2024-10-29 13:33:09 -05:00
committed by GitHub
parent e67b7a6d5e
commit 73da3d9b20

View File

@@ -111,13 +111,13 @@ export function AnnotationSettingsPane({
function onApply(values: z.infer<typeof formSchema>) { function onApply(values: z.infer<typeof formSchema>) {
if ( if (
!values || !values ||
values.annotationOffset == null || values.annotationOffset === null ||
values.annotationOffset == "" || values.annotationOffset === "" ||
!config !config
) { ) {
return; return;
} }
setAnnotationOffset(values.annotationOffset); setAnnotationOffset(values.annotationOffset ?? 0);
} }
return ( return (