diff --git a/apps/red-ui/src/app/modules/admin/dialogs/file-attributes-csv-import-dialog/file-attributes-csv-import-dialog.component.html b/apps/red-ui/src/app/modules/admin/dialogs/file-attributes-csv-import-dialog/file-attributes-csv-import-dialog.component.html index cd19562dc..88aeced82 100644 --- a/apps/red-ui/src/app/modules/admin/dialogs/file-attributes-csv-import-dialog/file-attributes-csv-import-dialog.component.html +++ b/apps/red-ui/src/app/modules/admin/dialogs/file-attributes-csv-import-dialog/file-attributes-csv-import-dialog.component.html @@ -98,7 +98,7 @@ width="full" > -
+
protected readonly _filterService: FilterService, protected readonly _searchService: SearchService, protected readonly _entitiesService: EntitiesService, + protected readonly _sortingService: SortingService, private readonly _multiSelectService: MultiSelectService, private readonly _pdf: PdfViewer, private readonly _annotationManager: REDAnnotationManager, ) { - super(_filterService, _searchService, _entitiesService); + super(_filterService, _searchService, _entitiesService, _sortingService); this.selectedLength$ .pipe( diff --git a/apps/red-ui/src/app/utils/functions.ts b/apps/red-ui/src/app/utils/functions.ts index ff16d7819..b69838063 100644 --- a/apps/red-ui/src/app/utils/functions.ts +++ b/apps/red-ui/src/app/utils/functions.ts @@ -1,7 +1,7 @@ import type { List } from '@iqser/common-ui'; +import { ITrackable } from '@iqser/common-ui'; import type { AnnotationWrapper } from '@models/file/annotation.wrapper'; import { Dayjs } from 'dayjs'; -import { ITrackable } from '../../../../../libs/common-ui/src/lib/listing/models/trackable'; export function hexToRgb(hex: string) { const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex); diff --git a/libs/common-ui b/libs/common-ui index 2cd389c73..36e5f65be 160000 --- a/libs/common-ui +++ b/libs/common-ui @@ -1 +1 @@ -Subproject commit 2cd389c73da458c7cc93c721f72a63a9951b9432 +Subproject commit 36e5f65bebbdeed48239a72baae9325ff02252d6