Skip to content

Commit

Permalink
Use POST instead of navigation for longer URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Aug 28, 2024
1 parent cbc63a0 commit bddafb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Ext4.define('Laboratory.panel.WorkbookCreationPanel', {
var urlParams = this.urlParams || {};

var url = LABKEY.ActionURL.buildURL(controller, action, containerPath, urlParams);
if (url.length > 1000){
if (url.length > 500){
Ext4.create('Ext.form.Panel', {
url: LABKEY.ActionURL.buildURL(controller, action, containerPath),
method: 'POST',
Expand Down

0 comments on commit bddafb1

Please sign in to comment.