Fix click-to-edit text, member visibility build error
This commit is contained in:
parent
7b23e96a61
commit
859b571133
@ -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();
|
||||
|
||||
|
@ -25,7 +25,7 @@ export default class PageRecord {
|
||||
public PageType: 'page' | 'form' = 'page';
|
||||
public AdditionalData: any;
|
||||
|
||||
constructor(data: any = {Name: 'Click to edit...'}) {
|
||||
constructor(data: any = {Name: 'Double-click to edit...'}) {
|
||||
[
|
||||
'UUID',
|
||||
'Name',
|
||||
|
Loading…
Reference in New Issue
Block a user