Fixed bug with custom css not updating
This commit is contained in:
parent
3dd255f359
commit
88694c7e27
4 changed files with 6 additions and 2 deletions
2
.env
2
.env
|
@ -1,3 +1,3 @@
|
|||
PORT=5005
|
||||
NODE_ENV=development
|
||||
VERSION=1.7.2
|
||||
VERSION=1.7.3
|
|
@ -1,3 +1,6 @@
|
|||
### v1.7.3 (2021-10-28)
|
||||
- Fixed bug with custom CSS not updating
|
||||
|
||||
### v1.7.2 (2021-10-28)
|
||||
- Pressing Enter while search bar is focused will now redirect to first result of local search ([#121](https://github.com/pawelmalak/flame/issues/121))
|
||||
- Use search bar shortcuts when it's not focused ([#124](https://github.com/pawelmalak/flame/issues/124))
|
||||
|
|
|
@ -1 +1 @@
|
|||
REACT_APP_VERSION=1.7.2
|
||||
REACT_APP_VERSION=1.7.3
|
|
@ -1,6 +1,7 @@
|
|||
const asyncWrapper = require('../../middleware/asyncWrapper');
|
||||
const File = require('../../utils/File');
|
||||
const { join } = require('path');
|
||||
const fs = require('fs');
|
||||
|
||||
// @desc Update custom CSS file
|
||||
// @route PUT /api/config/0/css
|
||||
|
|
Loading…
Reference in a new issue