Skip to content

Commit

Permalink
Re-engineering of the grid features in order to improve speed
Browse files Browse the repository at this point in the history
Fixed an issue where form[UserRequestSumUp] was not sent to parent form
Set version to 3.3.0-community-RE-2.5
  • Loading branch information
tomolimo committed Feb 23, 2024
1 parent 658e93a commit 6f8e4d6
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 291 deletions.
10 changes: 5 additions & 5 deletions workflow/engine/methods/login/version-pmos.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
if (!defined('PM_VERSION')) {
define("PM_VERSION", "3.3.0-community-RE-2.4");
define("PM_BUILD_VERSION", "3.3.0-community-RE-2.4");
}
<?php
if (!defined('PM_VERSION')) {
define("PM_VERSION", "3.3.0-community-RE-2.5");
define("PM_BUILD_VERSION", "3.3.0-community-RE-2.5");
}
2 changes: 1 addition & 1 deletion workflow/public_html/glpi/glpi.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ pm_glpi = {
tasks_observer: function (mutationList, observer) {

// hide dyn_forward_assign when it is the last step in the task
let dyn_forward_assign = document.querySelector('a[id*="dyn_forward" i][href="cases_Step?TYPE=ASSIGN_TASK&UID=-1&POSITION=10000&ACTION=ASSIGN"]');
let dyn_forward_assign = document.querySelector('a[id*="dyn_forward" i][href*="cases_Step?TYPE=ASSIGN_TASK&UID=-1&POSITION=10000&ACTION=ASSIGN"]');
if (dyn_forward_assign && dyn_forward_assign.style.display != 'none') {
dyn_forward_assign.style.display = 'none';
}
Expand Down
Loading

0 comments on commit 6f8e4d6

Please sign in to comment.