Skip to content

Commit

Permalink
Merge branch '64716-add-return-false-to-cell-click-events' into '7.1.x'
Browse files Browse the repository at this point in the history
ref #64716: add return false to cell click events

See merge request chameleon-system-oss/chameleon-base!100
  • Loading branch information
ckleis committed Oct 10, 2024
2 parents 77efeb7 + 93ca7fa commit 92fdfd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ private function getLinkData(array $row, ?string $onClickEvent): array
}
$linkEvent .= "'".$this->getLinkField($row, $linkField)."'";
}
$linkEvent .= ');';
$linkEvent .= '); return false;';
}

return [
Expand Down

0 comments on commit 92fdfd0

Please sign in to comment.