Skip to content

Commit

Permalink
Merge pull request #31359 from nextcloud/fix/apps-error-message-timeout
Browse files Browse the repository at this point in the history
Fix apps settings error message timeout
  • Loading branch information
PVince81 authored Mar 3, 2022
2 parents b8d4be4 + 135f70e commit 8f6a3f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/settings/src/store/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const state = {
const mutations = {

APPS_API_FAILURE(state, error) {
showError(t('settings', 'An error occured during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { timeout: 7, isHTML: true })
showError(t('settings', 'An error occured during the request. Unable to proceed.') + '<br>' + error.error.response.data.data.message, { isHTML: true })
console.error(state, error)
},

Expand Down
Loading

0 comments on commit 8f6a3f4

Please sign in to comment.