fix build errors

This commit is contained in:
garrettmills 2020-02-08 23:14:49 -06:00
parent e97c19f19d
commit 3852d6aab7
2 changed files with 2 additions and 2 deletions

View File

@ -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,

View File

@ -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;