fix: change show_raw interface definition to boolean (#929)

This commit is contained in:
Kara Todd 2023-10-06 18:45:00 -04:00 committed by GitHub
parent 732a9a03d6
commit e5fa9d5cff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -765,7 +765,7 @@ export interface MarkdownField extends MediaField {
widget: 'markdown';
toolbar_buttons?: MarkdownFieldToolbarButtons;
default?: string;
show_raw?: string;
show_raw?: boolean;
}
export interface NumberField extends BaseField {