diff --git a/jslib b/jslib
index 3f329ca6..8149d787 160000
--- a/jslib
+++ b/jslib
@@ -1 +1 @@
-Subproject commit 3f329ca6132ef03b562f0ae67d047daed11cd099
+Subproject commit 8149d7877d97c9c8a945ae934ab9c6a1fe74fd63
diff --git a/src/app/tools/import.component.html b/src/app/tools/import.component.html
index 91b9e1cc..1250163e 100644
--- a/src/app/tools/import.component.html
+++ b/src/app/tools/import.component.html
@@ -126,6 +126,12 @@
Using the Password Boss desktop application, navigate to "File" → "Export data" → "Password Boss JSON - not encrypted"
and save the JSON file.
+
+ Log into the Zoho web vault (vault.zoho.com). Navigate to "Tools" → "Export Secrets". Select "All Secrets" and click
+ the "Zoho Vault Format CSV" button. Highlight and copy the data from the textarea. Open a text editor like Notepad
+ and paste the data. Save the data from the text editor as
+ zoho_export.csv.
+
diff --git a/src/app/tools/import.component.ts b/src/app/tools/import.component.ts
index e7cbd861..35541922 100644
--- a/src/app/tools/import.component.ts
+++ b/src/app/tools/import.component.ts
@@ -49,6 +49,7 @@ import { SaferPassCsvImporter } from 'jslib/importers/saferpassCsvImport';
import { StickyPasswordXmlImporter } from 'jslib/importers/stickyPasswordXmlImporter';
import { TrueKeyCsvImporter } from 'jslib/importers/truekeyCsvImporter';
import { UpmCsvImporter } from 'jslib/importers/upmCsvImporter';
+import { ZohoVaultCsvImporter } from 'jslib/importers/zohoVaultCsvImporter';
@Component({
selector: 'app-import',
@@ -286,6 +287,8 @@ export class ImportComponent implements OnInit {
return new AscendoCsvImporter();
case 'passwordbossjson':
return new PasswordBossJsonImporter();
+ case 'zohovaultcsv':
+ return new ZohoVaultCsvImporter();
default:
return null;
}