Skip to content

Commit 810c854

Browse files
committed
fix(issue): show save button for followup edit
internal refs 24073, 25658
1 parent 1b6bcc2 commit 810c854

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

inc/issue.class.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,9 @@ public function displaySimplified(CommonDBTM $item, $options = []): void {
388388
echo '#itil-object-container .form-buttons span { display: none !important }';
389389
echo '#itil-object-container .form-buttons { flex: inherit; width: auto}';
390390
echo "#itil-object-container .timeline-buttons { flex: 1 1 auto }";
391-
echo "#itil-object-container button[type='submit'][name='update'] { display: none }";
391+
// The following line becomes useless with GLPI 10.0.5 as the save button of side panel does no longer show for extended service catalog
392+
// To drop when GLPI 10.0.5 is the minimum version
393+
echo "#itil-object-container .form-buttons button[type='submit'][name='update'] { display: none }";
392394
echo '</style>';
393395
$item->showForm($item->getID());
394396
echo "</div>";

0 commit comments

Comments
 (0)