Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
Fix comparison that prevented project add
Browse files Browse the repository at this point in the history
  • Loading branch information
talavis committed Jun 15, 2020
1 parent d64bfa2 commit 0fa28cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/store/modules/project/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const actions = {
return new Promise((resolve, reject) => {
let projectUuid = payload.id;
delete payload.id
if (projectUuid === -1) {
if (projectUuid === '-1') {
axios
.post('/api/project/',
payload,
Expand Down

0 comments on commit 0fa28cd

Please sign in to comment.