File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
"enhancements" : [
12
12
" `ListView`: Use new DragDropFiles control [#856](https://github.com/pnp/sp-dev-fx-controls-react/issues/856)" ,
13
13
" `FilePicker`: Use new DragDropFiles control [#856](https://github.com/pnp/sp-dev-fx-controls-react/issues/856)" ,
14
- " `ListView`: Ability to provide custom sorting function [#880](https://github.com/pnp/sp-dev-fx-controls-react/issues/880)"
14
+ " `ListView`: Ability to provide custom sorting function [#880](https://github.com/pnp/sp-dev-fx-controls-react/issues/880)" ,
15
+ " `FilePicker`: Allow panel on FilePicker to be invoked after first load [#886](https://github.com/pnp/sp-dev-fx-controls-react/issues/886)"
15
16
16
17
],
17
18
"fixes" : [
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ export class FilePicker extends React.Component<
120
120
*
121
121
* @param nextProps
122
122
*/
123
- public componentWillReceiveProps ( nextProps : IFilePickerProps ) : void {
123
+ public componentWillReceiveProps ( nextProps : IFilePickerProps ) : void {
124
124
if ( nextProps . isPanelOpen || nextProps . isPanelOpen !== this . props . isPanelOpen ) {
125
125
this . setState ( {
126
126
panelOpen : nextProps . isPanelOpen
@@ -415,7 +415,7 @@ export class FilePicker extends React.Component<
415
415
}
416
416
if ( ! this . props . hideLocalMultipleUploadTab ) {
417
417
links . push ( {
418
- name : strings . UploadLinkLabel + " " + strings . OneDriveRootFolderName ,
418
+ name : strings . UploadLinkLabel + " " + strings . OneDriveRootFolderName ,
419
419
url : addUrl ? "#Multipleupload" : undefined ,
420
420
key : "keyMultipleUpload" ,
421
421
icon : "BulkUpload" ,
You can’t perform that action at this time.
0 commit comments