File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
src/controls/filePicker/controls/DocumentLibraryBrowser Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -50,19 +50,19 @@ export class DocumentLibraryBrowser extends React.Component<IDocumentLibraryBrow
50
50
51
51
public render ( ) : React . ReactElement < IDocumentLibraryBrowserProps > {
52
52
53
- const { lists, isLoading } = this . state ;
53
+ const { lists, isLoading } = this . state ;
54
54
55
55
return (
56
56
< div className = { styles . documentLibraryBrowserContainer } >
57
- { isLoading && < Spinner label = 'Caricamento...' /> }
58
- < List
59
- className = { styles . filePickerFolderCardGrid }
60
- items = { lists }
61
- getItemCountForPage = { this . _getItemCountForPage }
62
- getPageHeight = { this . _getPageHeight }
63
- renderedWindowsAhead = { 4 }
64
- onRenderCell = { this . _onRenderLibraryTile }
65
- />
57
+ { isLoading && < Spinner label = { strings . Loading } /> }
58
+ < List
59
+ className = { styles . filePickerFolderCardGrid }
60
+ items = { lists }
61
+ getItemCountForPage = { this . _getItemCountForPage }
62
+ getPageHeight = { this . _getPageHeight }
63
+ renderedWindowsAhead = { 4 }
64
+ onRenderCell = { this . _onRenderLibraryTile }
65
+ />
66
66
</ div >
67
67
) ;
68
68
}
You can’t perform that action at this time.
0 commit comments