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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-12-19 10:48:46 +0300
committerGitHub <noreply@github.com>2019-12-19 10:48:46 +0300
commit972c39bafc9315b5296fcccd17f61dc220265854 (patch)
treeff5875290f70d57c55d56b99cfad115f2ee58447
parent8cd86f110bfa96fbf05a5792badc4821ec6035d9 (diff)
parentf63156976bd647607bd81f2b99786fd7d79ddf7c (diff)
fix credentials saving success message notification color (#18469)
fix credentials saving success message notification color
-rw-r--r--apps/files_external/js/statusmanager.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js
index ebedd91f2ac..e8273dca0df 100644
--- a/apps/files_external/js/statusmanager.js
+++ b/apps/files_external/js/statusmanager.js
@@ -413,7 +413,7 @@ OCA.Files_External.StatusManager = {
}
},
success: function (data) {
- OC.Notification.show(t('files_external', 'Credentials saved'), {type: 'error'});
+ OC.Notification.show(t('files_external', 'Credentials saved'), {type: 'success'});
dialog.ocdialog('close');
/* Trigger status check again */
OCA.Files_External.StatusManager.recheckConnectivityForMount([OC.basename(data.mountPoint)], true);