summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2018-10-19 11:23:33 +0200
committerStefan Weil <sw@weilnetz.de>2018-10-19 11:24:24 +0200
commit2ad38200fbad6a21403a1addaa65deab72741760 (patch)
tree94265101976cc7d49429a06483987dec3492d76d /apps/user_ldap
parenta1ea504edf529a364be9b66fda5d100d62dcc0b9 (diff)
downloadnextcloud-server-2ad38200fbad6a21403a1addaa65deab72741760.tar.gz
nextcloud-server-2ad38200fbad6a21403a1addaa65deab72741760.zip
Add missing semicolons
This fixes some recommendations from LGTM: Avoid automated semicolon insertion (90% of all statements in the enclosing function have an explicit semicolon). Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/js/wizard/wizardTabAbstractFilter.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js b/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
index c9c3aeb241d..0131816e4ee 100644
--- a/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
+++ b/apps/user_ldap/js/wizard/wizardTabAbstractFilter.js
@@ -302,7 +302,7 @@ OCA = OCA || {};
if( !view.getFilterItem().$element.val()
&& view.parsedFilterMode === view.configModel.FILTER_MODE_ASSISTED
) {
- view.configModel.requestWizard(view.getFilterItem().keyName)
+ view.configModel.requestWizard(view.getFilterItem().keyName);
}
} else if (payload.feature === view.getGroupsItem().featureName) {
if(view.manyGroupsSupport && payload.data.length > view._groupElementSwitchThreshold) {