Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit 5d6fc72

Browse files
committed
chore: merge pull
2 parents 16b6876 + 75bbb36 commit 5d6fc72

File tree

4 files changed

+417
-184
lines changed

4 files changed

+417
-184
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ otp_release:
55
- 21.0
66
addons:
77
postgresql: '9.6'
8+
apt:
9+
packages:
10+
# Ubuntu 16+ does not install this dependency by default, so we need to install it ourselves
11+
- libgconf-2-4
812

913
before_install:
1014
- sudo chown -R travis ./travis/install_node.sh

containers/Comments/logic.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,9 @@ export const openUpdateEditor = data =>
161161
})
162162

163163
export const openReplyEditor = data => {
164-
initDraftTimmer()
164+
if (!store.isLogin) return store.authWarning()
165165

166+
initDraftTimmer()
166167
store.markState({
167168
showReplyBox: true,
168169
showReplyEditor: true,

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coderplanets_web",
3-
"version": "0.4.2",
3+
"version": "0.5.1",
44
"license": "Apache License 2.0",
55
"scripts": {
66
"dev": "cross-env NODE_ENV=dev node server.js",
@@ -145,7 +145,7 @@
145145
"commitizen": "3.1.2",
146146
"coveralls": "3.0.3",
147147
"cross-env": "^5.0.5",
148-
"cypress": "^3.0.2",
148+
"cypress": "3.4.1",
149149
"cz-conventional-changelog": "^3.0.0",
150150
"dotenv": "6.2.0",
151151
"dotenv-webpack": "1.6.0",
@@ -163,7 +163,7 @@
163163
"react-test-renderer": "16.8.1",
164164
"regenerator-runtime": "^0.13.1",
165165
"shelljs": "0.8.2",
166-
"standard-version": "^4.4.0",
166+
"standard-version": "^7.0.0",
167167
"start-server-and-test": "^1.7.13"
168168
}
169169
}

0 commit comments

Comments
 (0)