mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed SonarQube code smell 'Unnecessary use of boolean literals in conditional expression'.
This commit is contained in:
@@ -498,7 +498,7 @@ define('pgadmin.browser', [
|
||||
url: _m.url || '#',
|
||||
target: _m.target,
|
||||
icon: _m.icon,
|
||||
enable: enable ? enable : true,
|
||||
enable: enable || true,
|
||||
node: _m.node,
|
||||
checked: _m.checked,
|
||||
below: _m.below,
|
||||
|
||||
Reference in New Issue
Block a user