Skip to content

Commit

Permalink
fix(issue): show save button for followup edit
Browse files Browse the repository at this point in the history
internal refs 24073, 25658
  • Loading branch information
btry committed Nov 24, 2022
1 parent 1b6bcc2 commit 810c854
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion inc/issue.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,9 @@ public function displaySimplified(CommonDBTM $item, $options = []): void {
echo '#itil-object-container .form-buttons span { display: none !important }';
echo '#itil-object-container .form-buttons { flex: inherit; width: auto}';
echo "#itil-object-container .timeline-buttons { flex: 1 1 auto }";
echo "#itil-object-container button[type='submit'][name='update'] { display: none }";
// 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
// To drop when GLPI 10.0.5 is the minimum version
echo "#itil-object-container .form-buttons button[type='submit'][name='update'] { display: none }";
echo '</style>';
$item->showForm($item->getID());
echo "</div>";
Expand Down

0 comments on commit 810c854

Please sign in to comment.