Skip to content

Commit

Permalink
fix to make selected-items work
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadam committed Apr 23, 2024
1 parent 37cc37b commit 176bff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmpl/admin2023/cms/dialog/create_association.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function init() {
var parent_li = TC.getParentByTagName( element, "li" );
if (parent) this.setFocus( parent );
// evt.preventDefault();
return this.select( element, (parent_li ? null : parent) );
return this.select( element, (parent_li ? parent_li : parent) );
}

// handle rows
Expand Down

0 comments on commit 176bff9

Please sign in to comment.