Skip to content

Commit

Permalink
[0.8] Allow the format property to be omitted (#3812)
Browse files Browse the repository at this point in the history
  • Loading branch information
Karibash authored Feb 9, 2023
1 parent 3986743 commit 060cee7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import {ReactNode, useCallback, useEffect, useRef} from 'react';

type Props = Readonly<{
children: ReactNode;
format: ElementFormatType | null | undefined;
format?: ElementFormatType | null;
nodeKey: NodeKey;
className: Readonly<{
base: string;
Expand Down

2 comments on commit 060cee7

@vercel
Copy link

@vercel vercel bot commented on 060cee7 Feb 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical – ./packages/lexical-website

lexical-git-main-fbopensource.vercel.app
lexical.dev
lexical-fbopensource.vercel.app
lexicaljs.org
www.lexical.dev
lexicaljs.com

@vercel
Copy link

@vercel vercel bot commented on 060cee7 Feb 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical-playground – ./packages/lexical-playground

lexical-playground-git-main-fbopensource.vercel.app
lexical-playground.vercel.app
lexical-playground-fbopensource.vercel.app
playground.lexical.dev

Please sign in to comment.