CSR-663 shorthand return
This commit is contained in:
parent
2dedad7a44
commit
7350835e93
1 changed files with 1 additions and 7 deletions
|
|
@ -130,13 +130,7 @@ export default {
|
|||
},
|
||||
|
||||
noSession() {
|
||||
if (getSessionKeyValue() === 0 || getSessionIdValue() === '00000000-0000-0000-0000-000000000000') {
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
return getSessionKeyValue() === 0 || getSessionIdValue() === '00000000-0000-0000-0000-000000000000';
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue