diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2024-07-29 12:15:18 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2024-09-05 04:18:37 +0200 |
commit | 35f16a3d8a95530b89cb43e4275257eb9b8e64fe (patch) | |
tree | 491819f981dbc8672627a1a1087565d41e1c7d9c /apps | |
parent | 9108d54bda7b9901985300ce8f3334234434b1be (diff) | |
download | nextcloud-server-35f16a3d8a95530b89cb43e4275257eb9b8e64fe.tar.gz nextcloud-server-35f16a3d8a95530b89cb43e4275257eb9b8e64fe.zip |
fix: Set status tooltip to status message when saving an storage
When a storage is saved the status check can fail even if saving the
storage succeeds. In those cases further details are provided in the
status message of the storage, which is now set as the tooltip,
similarly to how it is done when rechecking the storage.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/js/settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index 1c27642c6a3..92b14e9454d 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -1266,7 +1266,7 @@ MountConfigListView.prototype = _.extend({ if (concurrentTimer === undefined || $tr.data('save-timer') === concurrentTimer ) { - self.updateStatus($tr, result.status); + self.updateStatus($tr, result.status, result.statusMessage); $tr.data('id', result.id); if (_.isFunction(callback)) { |