Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/exporters/exporter-csv.js')
-rw-r--r--js/exporters/exporter-csv.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/exporters/exporter-csv.js b/js/exporters/exporter-csv.js
index 90a15b0b..99494943 100644
--- a/js/exporters/exporter-csv.js
+++ b/js/exporters/exporter-csv.js
@@ -34,7 +34,7 @@ PassmanExporter.csv.export = function (credentials) {
/** global: C_Promise */
return new C_Promise(function () {
var _this = this;
- var headers = ['label', 'username', 'password', 'email', 'description', 'tags'];
+ var headers = ['label', 'username', 'password', 'email', 'description', 'tags', 'url'];
var file_data = '"' + headers.join('","') + '"\n';
for (var i = 0; i < credentials.length; i++) {
var _credential = credentials[i];