Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

- Fix prevent failure when attempting to delete an actor
- Fix form `path` for `tab` `container`

## [1.23.1] - 2025-11-20
Expand Down
5 changes: 5 additions & 0 deletions inc/field.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1064,6 +1064,11 @@ function () {
'change',
'input, select, textarea',
function(evt) {
if (evt.target.hasAttribute('data-actor-type')) {
// Do not handle actor type changes
return;
}

if (evt.target.name == "itilcategories_id" && {$items_id} == 0) {
// Do not refresh tab container when form is reloaded
// to prevent issues diues to duplicated calls (when object is new)
Expand Down