From 3852d6aab71be27ae60ff236c5ddd07505456359 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sat, 8 Feb 2020 23:14:49 -0600 Subject: [PATCH] fix build errors --- src/app/components/editor/database/database.component.ts | 2 +- src/app/structures/HostRecord.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/editor/database/database.component.ts b/src/app/components/editor/database/database.component.ts index 78378d4..8fb4039 100644 --- a/src/app/components/editor/database/database.component.ts +++ b/src/app/components/editor/database/database.component.ts @@ -21,7 +21,7 @@ export class DatabaseComponent implements OnInit { public dbRecord: any; public pendingSetup = true; public dirty = false; - protected lastClickRow = -1; + public lastClickRow = -1; constructor( protected api: ApiService, diff --git a/src/app/structures/HostRecord.ts b/src/app/structures/HostRecord.ts index e78eb8b..3613f60 100644 --- a/src/app/structures/HostRecord.ts +++ b/src/app/structures/HostRecord.ts @@ -1,6 +1,6 @@ export default class HostRecord { public value = ''; - public type: 'paragraph'|'header1'|'header2'|'header3'|'header4'|'block_code'|'click_link'|'database_ref' = 'paragraph'; + public type: 'paragraph'|'header1'|'header2'|'header3'|'header4'|'block_code'|'click_link'|'database_ref'|'ul' = 'paragraph'; public CreatedAt: string; public PageId: string;