Merge pull request #19776 from liviuconcioiu/19775

Fix #19775 - Fix copy to clipboard
This commit is contained in:
Maurício Meneghini Fauth 2025-07-26 19:49:59 -03:00 committed by GitHub
commit f579370d08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -410,7 +410,7 @@ AJAX.registerOnload('sql.js', function () {
*/
$(document).on('makeGrid', '.sqlqueryresults', function () {
$('.table_results').each(function () {
if ($(this).find('td.grid_edit').length > 0) {
if (typeof window.makeGrid === 'function') {
makeGrid(this);
}
});