From e94999b07d8448e044f35a08f4bfd77e5d1a016a Mon Sep 17 00:00:00 2001 From: Simon Behar Date: Wed, 14 Aug 2019 14:29:15 -0700 Subject: [PATCH] Added 'SyncFail' to possible HookTypes in UI (#2153) --- ui/src/app/shared/models.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/shared/models.ts b/ui/src/app/shared/models.ts index a9a58d32d5..9f5ac19ccd 100644 --- a/ui/src/app/shared/models.ts +++ b/ui/src/app/shared/models.ts @@ -61,7 +61,7 @@ export interface OperationState { finishedAt: models.Time; } -export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'Skip'; +export type HookType = 'PreSync' | 'Sync' | 'PostSync' | 'SyncFail' | 'Skip'; export interface RevisionMetadata { author: string;