Skip to content

Commit

Permalink
feat(SLA / OLA): increase maximum time
Browse files Browse the repository at this point in the history
  • Loading branch information
stonebuzz authored and cedric-anne committed Oct 3, 2023
1 parent 25a0099 commit a748aac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LevelAgreement.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ public function showForm($ID, array $options = [])
echo "<tr class='tab_bg_1'><td>" . __('Maximum time') . "</td>";
echo "<td>";
Dropdown::showNumber("number_time", ['value' => $this->fields["number_time"],
'min' => 0
'min' => 0,
'max' => 1000
]);
$possible_values = self::getDefinitionTimeValues();
$rand = Dropdown::showFromArray(
Expand Down

0 comments on commit a748aac

Please sign in to comment.