diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-07-03 23:57:05 +0300 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-07-03 23:57:05 +0300 |
commit | dd324aa581bed7ea31f20968c6b596f373e7054f (patch) | |
tree | 58fe0795f0a8f721fc8cfed9921e005a3a17625f /client/components/cards/cardDate.js | |
parent | 177c00e97427ab6280b3c6f3acd84cda5167a23c (diff) | |
download | wekan-dd324aa581bed7ea31f20968c6b596f373e7054f.tar.gz wekan-dd324aa581bed7ea31f20968c6b596f373e7054f.tar.bz2 wekan-dd324aa581bed7ea31f20968c6b596f373e7054f.zip |
- Fix lint warning: EditCardDate is assigned a value but never used no-unused-vars
Thanks to xet7 !
Diffstat (limited to 'client/components/cards/cardDate.js')
-rw-r--r-- | client/components/cards/cardDate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/components/cards/cardDate.js b/client/components/cards/cardDate.js index 02ea09ae..b0f2baa3 100644 --- a/client/components/cards/cardDate.js +++ b/client/components/cards/cardDate.js @@ -1,5 +1,5 @@ // Edit received, start, due & end dates -const EditCardDate = BlazeComponent.extendComponent({ +BlazeComponent.extendComponent({ template() { return 'editCardDate'; }, |