diff --git a/web/app/static/js/modules/corpus_analysis/client/Client.js b/web/app/static/js/modules/corpus_analysis/client/Client.js
index 7aac251d816cda44e3225483e36d0be56e2a8d79..b5b1bfdfbc3e2f92301577df8bb55be68f4bfe5f 100644
--- a/web/app/static/js/modules/corpus_analysis/client/Client.js
+++ b/web/app/static/js/modules/corpus_analysis/client/Client.js
@@ -78,7 +78,7 @@ class Client {
     detailObject.notificationType = notificationType;
     detailObject.raiseModalFeedback = raiseModalFeedback;
     const event = new CustomEvent('notify-view', { detail: detailObject });
-    console[notificationType]('Client dispatching Notification with detail object in details:',
+    console[notificationType]('Client dispatching Notification with details:',
                  detailObject);
     document.dispatchEvent(event);
   }
@@ -136,7 +136,7 @@ class Client {
       tmp_first_cpos.push(results.data.matches[dataIndex].c[0]);
       tmp_last_cpos.push(results.data.matches[dataIndex].c[1]);
     }
-    nopaque.socket.emit("corpus_analysis_get_match_with_full_context",
+    nopaque.socket.emit('corpus_analysis_get_match_with_full_context',
                         {type: resultsType,
                          data_indexes: dataIndexes,
                          first_cpos: tmp_first_cpos,
diff --git a/web/app/static/js/modules/corpus_analysis/client/callbacks.js b/web/app/static/js/modules/corpus_analysis/client/callbacks.js
index 230cc195085ed4035ebcbdf20305d7742950752a..342995059f2f9020b9c7c55dee0fcb01b2b0b661 100644
--- a/web/app/static/js/modules/corpus_analysis/client/callbacks.js
+++ b/web/app/static/js/modules/corpus_analysis/client/callbacks.js
@@ -81,7 +81,8 @@ function saveQueryData() {
 function getResultsData() {
   let [resultsType, dataIndexes, resultsList, client, results, rest] = arguments;
   client.isBusy = true;
-  if (resultsList.exportFullInspectContext.checked || resultsType === 'inspect-results') {
+  if (resultsList.exportFullInspectContext.checked
+      || resultsType === 'inspect-results') {
     console.info('Get results with full context');
     client.getResultsData(resultsType, dataIndexes, results);
   } else {