Fix click-to-edit text, member visibility build error
This commit is contained in:
@@ -17,8 +17,8 @@ export class MarkdownComponent extends EditorNodeContract implements OnInit {
|
||||
@ViewChild('editorContainer') editorContainer: ElementRef;
|
||||
|
||||
// public isFocused = false;
|
||||
public initialValue = 'Click to edit...';
|
||||
protected savedValue = 'Click to edit...';
|
||||
public initialValue = 'Double-click to edit...';
|
||||
protected savedValue = 'Double-click to edit...';
|
||||
public contents = '';
|
||||
private dirtyOverride = false;
|
||||
public showEditor = false;
|
||||
|
||||
@@ -16,15 +16,15 @@ export class NormComponent extends EditorNodeContract implements OnInit, OnDestr
|
||||
@Input() nodeId: string;
|
||||
@Input() editorUUID?: string;
|
||||
|
||||
public initialValue = 'Click to edit...';
|
||||
protected savedValue = 'Click to edit...';
|
||||
public initialValue = 'Double-click to edit...';
|
||||
protected savedValue = 'Double-click to edit...';
|
||||
public contents = '';
|
||||
private dirtyOverride = false;
|
||||
private editorGroupSocket?: FlitterSocketConnection;
|
||||
|
||||
public editorGroupUsers: Array<{uuid: string, uid: string, display: string, color: string}> = [];
|
||||
public editorGroupId?: string;
|
||||
protected editingUserSelections: Array<EditingUserSelect> = [];
|
||||
public editingUserSelections: Array<EditingUserSelect> = [];
|
||||
|
||||
public requestSelectionRefresh = () => this.refreshRemoteSelections();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user