fix: export highlight in yellow in notion if color is null
This commit is contained in:
@ -277,7 +277,9 @@ export class NotionClient implements IntegrationClient {
|
||||
},
|
||||
annotations: {
|
||||
code: true,
|
||||
color: highlight.color as AnnotationColor,
|
||||
color: highlight.color
|
||||
? (highlight.color as AnnotationColor)
|
||||
: 'yellow',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user