mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
- Fix lint errors and warnings.
Thanks to xet7 !
This commit is contained in:
parent
5d0b23ee3f
commit
58855ada97
3 changed files with 9 additions and 9 deletions
|
|
@ -34,7 +34,7 @@ BlazeComponent.extendComponent({
|
|||
'click .js-goto-trigger' (event) {
|
||||
event.preventDefault();
|
||||
const ruleTitle = this.find('#ruleTitle').value;
|
||||
if(ruleTitle != undefined && ruleTitle != ''){
|
||||
if(ruleTitle !== undefined && ruleTitle !== ''){
|
||||
this.find('#ruleTitle').value = '';
|
||||
this.ruleName.set(ruleTitle);
|
||||
this.setTrigger();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue