mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-09 18:03:21 +00:00
ACS-8055 fix interface typo
This commit is contained in:
@@ -45,9 +45,7 @@ export class LegalHoldService {
|
|||||||
map(({ list }) =>
|
map(({ list }) =>
|
||||||
list?.entries?.map(({ entry }) => ({
|
list?.entries?.map(({ entry }) => ({
|
||||||
id: entry?.id,
|
id: entry?.id,
|
||||||
name: entry?.name,
|
name: entry?.name
|
||||||
reason: entry?.reason,
|
|
||||||
description: entry?.description
|
|
||||||
}))
|
}))
|
||||||
),
|
),
|
||||||
catchError((err) => throwError(err))
|
catchError((err) => throwError(err))
|
||||||
|
|||||||
@@ -20,5 +20,5 @@ export interface Hold {
|
|||||||
name: string;
|
name: string;
|
||||||
reason?: string;
|
reason?: string;
|
||||||
description?: string;
|
description?: string;
|
||||||
selected?: string;
|
selected?: boolean;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user