mirror of
https://github.com/dnote/dnote
synced 2026-03-15 06:55:49 +01:00
Fix failing requests (#263)
* Fix a failing request * Update changelog * Bump * Update changelog
This commit is contained in:
parent
46384b237a
commit
b2d813b2fa
3 changed files with 10 additions and 6 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -10,9 +10,9 @@ All notable changes to the projects under this repository will be documented in
|
|||
|
||||
The following log documentes the history of the server project.
|
||||
|
||||
## [Unreleased]
|
||||
### [Unreleased]
|
||||
|
||||
### Changed
|
||||
#### Changed
|
||||
|
||||
- Treat a linebreak as a new line in the preview (#261)
|
||||
- Allow to have multiple editor states for adding and editing notes (#260)
|
||||
|
|
@ -60,6 +60,12 @@ The following log documentes the history of the CLI project
|
|||
|
||||
The following log documentes the history of the browser extensions project
|
||||
|
||||
### [Unreleased]
|
||||
|
||||
#### Fixed
|
||||
|
||||
- Fix failing requests (#263)
|
||||
|
||||
### 1.1.0 - 2019-09-30
|
||||
|
||||
#### Removed
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
},
|
||||
"author": "Monomax Software Pty Ltd",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.1",
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.5",
|
||||
"lodash": "^4.17.15",
|
||||
|
|
|
|||
|
|
@ -163,9 +163,7 @@ const Composer: React.FunctionComponent<Props> = () => {
|
|||
return () => {
|
||||
window.removeEventListener('keydown', handleSubmitShortcut);
|
||||
};
|
||||
}, []);
|
||||
|
||||
useEffect(() => {}, []);
|
||||
}, [composer]);
|
||||
|
||||
let submitBtnText: string;
|
||||
if (submitting) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue