diff --git a/docs/content-services/document-list.component.md b/docs/content-services/document-list.component.md index 78c54e9269..ab06868b91 100644 --- a/docs/content-services/document-list.component.md +++ b/docs/content-services/document-list.component.md @@ -56,7 +56,7 @@ Displays the documents from a repository. | Name | Type | Default value | Description | | ---- | ---- | ------------- | ----------- | -| allowDropFiles | `boolean` | false | Toggle file drop support for rows (see [Upload Directive](../core/upload.directive.md) for further details) | +| allowDropFiles | `boolean` | false | When true, this enables you to drop files directly into subfolders shown as items in the list. When false, the dropped file will be added to the current folder (ie, the one containing all the items shown in the list). See the [Upload directive](../core/upload.directive.md) for further details about how the file drop is handled. | | contentActions | `boolean` | false | Toggles content actions for each row | | contentActionsPosition | `string` | "right" | Position of the content actions dropdown menu. Can be set to "left" or "right". | | contextMenuActions | `boolean` | false | Toggles context menus for each row | diff --git a/lib/content-services/document-list/components/document-list.component.ts b/lib/content-services/document-list/components/document-list.component.ts index d325f31284..ffecb26e02 100644 --- a/lib/content-services/document-list/components/document-list.component.ts +++ b/lib/content-services/document-list/components/document-list.component.ts @@ -159,7 +159,13 @@ export class DocumentListComponent implements OnInit, OnChanges, OnDestroy, Afte @Input() emptyFolderImageUrl: string = './assets/images/empty_doc_lib.svg'; - /** Toggle file drop support for rows (see Upload Directive for further details) */ + /** + * When true, this enables you to drop files directly into subfolders shown + * as items in the list. When false, the dropped file will be added to the + * current folder (ie, the one containing all the items shown in the list). + * See the Upload directive for further details about how the file drop is + * handled. + */ @Input() allowDropFiles: boolean = false;