diff options
author | RJevnikar <12701645+rjevnikar@users.noreply.github.com> | 2018-06-05 21:21:14 +0000 |
---|---|---|
committer | RJevnikar <12701645+rjevnikar@users.noreply.github.com> | 2018-06-05 21:21:14 +0000 |
commit | 78b9436f38d55c9c7497e16d9c4ffc320bf26a45 (patch) | |
tree | 0cad5e85666a2ff1f60eeeeaed50526ca85a64c7 /client/components/cards | |
parent | 3ce3fa74b350ff1af73b0fffddaeff4b0f126e2c (diff) | |
download | wekan-78b9436f38d55c9c7497e16d9c4ffc320bf26a45.tar.gz wekan-78b9436f38d55c9c7497e16d9c4ffc320bf26a45.tar.bz2 wekan-78b9436f38d55c9c7497e16d9c4ffc320bf26a45.zip |
Fix problems highlighted by Codacy/PR Quality Review
Diffstat (limited to 'client/components/cards')
-rw-r--r-- | client/components/cards/cardDetails.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 8aec8a59..6cbc4572 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -156,7 +156,7 @@ BlazeComponent.extendComponent({ 'submit .js-card-details-requester'(evt) { evt.preventDefault(); const requester = this.currentComponent().getValue().trim(); - if (requestor) { + if (requester) { this.data().setRequestedBy(requester); } }, |