Skip to content
Snippets Groups Projects
Commit 6ab911be authored by Stefan Rotsch's avatar Stefan Rotsch Committed by Frank Nägler
Browse files

[BUGFIX] Workspace grid remains empty due to AJAX timeout

With a large amount of unpublished changes, the workspace grid requires
a longer Ajax timeout than the default 30s (similar to the mass
actions).

Resolves: #54922
Releases: master, 6.2
Change-Id: I7e81e1f7ce989599c9fc17a6e698a31a79e474d5
Reviewed-on: http://review.typo3.org/26767


Reviewed-by: default avatarBenjamin Mack <benni@typo3.org>
Tested-by: default avatarBenjamin Mack <benni@typo3.org>
Reviewed-by: default avatarFrank Nägler <frank.naegler@typo3.org>
Tested-by: default avatarFrank Nägler <frank.naegler@typo3.org>
parent ce498d33
Branches
Tags
No related merge requests found
......@@ -16,6 +16,9 @@ Ext.ns('TYPO3.Workspaces');
TYPO3.Workspaces.App = {
init : function() {
// With a large amount of unpublished changes, the workspace grid requires a longer Ajax timeout
Ext.Ajax.timeout = 120000;
TYPO3.Workspaces.WorkspaceGrid.initColModel();
TYPO3.Workspaces.WorkspaceGrid.render('workspacegrid');
......@@ -80,4 +83,4 @@ Ext.onReady(function() {
// fire grid
var WS = new TYPO3.Workspaces.App.init();
});
\ No newline at end of file
});
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment