Fix error with Chrome 105

See https://github.com/OCA/web/issues/2284
pull/2285/head
JonathanStein 2022-09-05 13:43:47 +02:00 committed by GitHub
parent 8acc4dae03
commit e2704c4fc0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ odoo.define('web_export_view', function (require) {
if (children) { if (children) {
// Find only rows with data // Find only rows with data
view.$el.find('.o_list_view > tbody > tr.o_data_row:' + view.$el.find('.o_list_view > tbody > tr.o_data_row:' +
'has(.o_list_record_selector input:checkbox:checked)') 'has(.o_list_record_selector input[type=checkbox]:checked)')
.each(function () { .each(function () {
var $row = $(this); var $row = $(this);
var export_row = []; var export_row = [];