diff --git a/src/core/features/sharedfiles/components/list-modal/list-modal.html b/src/core/features/sharedfiles/components/list-modal/list-modal.html index f022309dd..602b672ac 100644 --- a/src/core/features/sharedfiles/components/list-modal/list-modal.html +++ b/src/core/features/sharedfiles/components/list-modal/list-modal.html @@ -14,6 +14,7 @@ + [path]="path" [showSitePicker]="!hideSitePicker" (onPathChanged)="calculateTitle($event)" + (onFilePicked)="filePicked($event)"> diff --git a/src/core/features/sharedfiles/components/list-modal/list-modal.ts b/src/core/features/sharedfiles/components/list-modal/list-modal.ts index f3ba2f873..9a38a9c75 100644 --- a/src/core/features/sharedfiles/components/list-modal/list-modal.ts +++ b/src/core/features/sharedfiles/components/list-modal/list-modal.ts @@ -32,7 +32,7 @@ export class CoreSharedFilesListModalComponent implements OnInit { @Input() manage?: boolean; @Input() pick?: boolean; // To pick a file you MUST use a modal. @Input() path?: string; - @Input() showSitePicker?: boolean; + @Input() hideSitePicker?: boolean; title?: string;