Skip to content

Commit 88694c7

Browse files
committed
Fixed bug with custom css not updating
1 parent 3dd255f commit 88694c7

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
PORT=5005
22
NODE_ENV=development
3-
VERSION=1.7.2
3+
VERSION=1.7.3

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### v1.7.3 (2021-10-28)
2+
- Fixed bug with custom CSS not updating
3+
14
### v1.7.2 (2021-10-28)
25
- Pressing Enter while search bar is focused will now redirect to first result of local search ([#121](https://github.com/pawelmalak/flame/issues/121))
36
- Use search bar shortcuts when it's not focused ([#124](https://github.com/pawelmalak/flame/issues/124))

client/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
REACT_APP_VERSION=1.7.2
1+
REACT_APP_VERSION=1.7.3

controllers/config/updateCSS.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const asyncWrapper = require('../../middleware/asyncWrapper');
22
const File = require('../../utils/File');
33
const { join } = require('path');
4+
const fs = require('fs');
45

56
// @desc Update custom CSS file
67
// @route PUT /api/config/0/css

0 commit comments

Comments
 (0)