diff --git a/public/src/assets/daw.svg b/public/src/assets/daw.svg index 31fffdaf..4d17c3c6 100644 --- a/public/src/assets/daw.svg +++ b/public/src/assets/daw.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/public/src/components/AddTagMenu/AddTagMenu.tsx b/public/src/components/AddTagMenu/AddTagMenu.tsx index 977bb752..92aa3799 100644 --- a/public/src/components/AddTagMenu/AddTagMenu.tsx +++ b/public/src/components/AddTagMenu/AddTagMenu.tsx @@ -86,7 +86,7 @@ export class AddTagMenu extends ScReact.Component {
this.inputContainerRef = ref} onsubmit={this.handleSubmit}> - this.inputRef = ref}/> + this.inputRef = ref}/> diff --git a/public/src/components/TagsFilter/TagsFilter.tsx b/public/src/components/TagsFilter/TagsFilter.tsx index 10879d46..214e5d37 100644 --- a/public/src/components/TagsFilter/TagsFilter.tsx +++ b/public/src/components/TagsFilter/TagsFilter.tsx @@ -57,7 +57,6 @@ export class TagsFilter extends ScReact.Component { - console.log("closeMenu") this.setState(state => ({ ...state, menuOpen: false diff --git a/public/src/modules/stores/NoteStore.ts b/public/src/modules/stores/NoteStore.ts index 615f52cb..bc4ca8be 100644 --- a/public/src/modules/stores/NoteStore.ts +++ b/public/src/modules/stores/NoteStore.ts @@ -92,7 +92,6 @@ class NoteStore extends BaseStore { }; private setNote = (note: any) => { - console.log("setNote") this.SetState(state => ({ ...state, note: note @@ -100,26 +99,22 @@ class NoteStore extends BaseStore { }; private changeTitle = (title: string) => { - console.log("changeTitle") this.state.note.title = title; this.onNoteChanged() }; private changeContent = (content: any) => { - console.log("changeContent") this.state.note.blocks = content this.onNoteChanged() } private onNoteChanged = () => { - console.log("onNoteChanged") if (AppNotesStore.state.selectedNote) { this.saveNote({id: AppNotesStore.state.selectedNote.id, parent: AppNotesStore.state.selectedNote.parent, note: this.state.note}); } } private clearNote = () => { - console.log("clearNote") this.SetState(state => ({ ...state, note: {