diff --git a/jslib b/jslib
index 41dd6b1f2c2..5fac0677131 160000
--- a/jslib
+++ b/jslib
@@ -1 +1 @@
-Subproject commit 41dd6b1f2c2d12bfa23162fa4ff5200620b6e8ac
+Subproject commit 5fac06771310a083a004542db4c67028308f40c9
diff --git a/src/app/tools/import.component.html b/src/app/tools/import.component.html
index d8b72ba14fc..8ac214a8bc0 100644
--- a/src/app/tools/import.component.html
+++ b/src/app/tools/import.component.html
@@ -92,6 +92,9 @@
Using the Dashlane desktop application, navigate to "File" → "Export" → "Unsecured archive (readable) in CSV format"
and save the CSV file.
+
+ Using the mSecure desktop application, navigate to "File" → "Export" → "CSV File..." and save the CSV file.
+
diff --git a/src/app/tools/import.component.ts b/src/app/tools/import.component.ts
index c68c8ee1706..0384a8eb396 100644
--- a/src/app/tools/import.component.ts
+++ b/src/app/tools/import.component.ts
@@ -34,6 +34,7 @@ import { KeePassXCsvImporter } from 'jslib/importers/keepassxCsvImporter';
import { KeeperCsvImporter } from 'jslib/importers/keeperCsvImporter';
import { LastPassCsvImporter } from 'jslib/importers/lastpassCsvImporter';
import { MeldiumCsvImporter } from 'jslib/importers/meldiumCsvImporter';
+import { MSecureCsvImporter } from 'jslib/importers/msecureCsvImporter';
import { OnePassword1PifImporter } from 'jslib/importers/onepassword1PifImporter';
import { OnePasswordWinCsvImporter } from 'jslib/importers/onepasswordWinCsvImporter';
import { PadlockCsvImporter } from 'jslib/importers/padlockCsvImporter';
@@ -263,6 +264,8 @@ export class ImportComponent implements OnInit {
return new PasswordSafeXmlImporter();
case 'dashlanecsv':
return new DashlaneCsvImporter();
+ case 'msecurecsv':
+ return new MSecureCsvImporter();
default:
return null;
}