Update antd
Summary: Project doc: https://docs.google.com/document/d/1miofxds9DJgWScj0zFyBbdpRH5Rj0T9FqiCapof5-vU Required to get `Space.Compact` allow-large-files Reviewed By: passy Differential Revision: D48520383 fbshipit-source-id: 000a5c16c00541455dc4a31c4fddb2c4c252a89e
This commit is contained in:
committed by
Facebook GitHub Bot
parent
795d02d00c
commit
c091067902
@@ -94,7 +94,7 @@ export const PowerSearch: React.FC<PowerSearchProps> = ({config}) => {
|
||||
},
|
||||
]);
|
||||
}}
|
||||
value={null}
|
||||
value={''}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
||||
@@ -92,11 +92,11 @@ test('linkify formatter', () => {
|
||||
expect(linkify('https://www.google.com')).toMatchInlineSnapshot(`
|
||||
<React.Fragment>
|
||||
|
||||
<ForwardRef(Link)
|
||||
<ForwardRef
|
||||
href="https://www.google.com"
|
||||
>
|
||||
https://www.google.com
|
||||
</ForwardRef(Link)>
|
||||
</ForwardRef>
|
||||
|
||||
</React.Fragment>
|
||||
`);
|
||||
@@ -107,11 +107,11 @@ test('linkify formatter', () => {
|
||||
expect(linkify('test https://www.google.com test')).toMatchInlineSnapshot(`
|
||||
<React.Fragment>
|
||||
test
|
||||
<ForwardRef(Link)
|
||||
<ForwardRef
|
||||
href="https://www.google.com"
|
||||
>
|
||||
https://www.google.com
|
||||
</ForwardRef(Link)>
|
||||
</ForwardRef>
|
||||
test
|
||||
</React.Fragment>
|
||||
`);
|
||||
@@ -119,17 +119,17 @@ test('linkify formatter', () => {
|
||||
.toMatchInlineSnapshot(`
|
||||
<React.Fragment>
|
||||
|
||||
<ForwardRef(Link)
|
||||
<ForwardRef
|
||||
href="https://www.google.com"
|
||||
>
|
||||
https://www.google.com
|
||||
</ForwardRef(Link)>
|
||||
</ForwardRef>
|
||||
test
|
||||
<ForwardRef(Link)
|
||||
<ForwardRef
|
||||
href="http://fb.com"
|
||||
>
|
||||
http://fb.com
|
||||
</ForwardRef(Link)>
|
||||
</ForwardRef>
|
||||
|
||||
</React.Fragment>
|
||||
`);
|
||||
@@ -162,11 +162,11 @@ test('jsonify formatter', () => {
|
||||
<React.Fragment>
|
||||
{
|
||||
"hello": "
|
||||
<ForwardRef(Link)
|
||||
<ForwardRef
|
||||
href="http://facebook.com"
|
||||
>
|
||||
http://facebook.com
|
||||
</ForwardRef(Link)>
|
||||
</ForwardRef>
|
||||
"
|
||||
}
|
||||
</React.Fragment>
|
||||
|
||||
Reference in New Issue
Block a user