From 72194dcc1ad1e707aeecc1475a33db2991b224c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E5=88=9A?= Date: Mon, 29 Aug 2022 02:55:19 +0000 Subject: [PATCH] * Fix bug#26939 --- module/bug/js/batchedit.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/bug/js/batchedit.js b/module/bug/js/batchedit.js index 0b15187841..fca4d45aac 100644 --- a/module/bug/js/batchedit.js +++ b/module/bug/js/batchedit.js @@ -81,6 +81,10 @@ $(function() $('select[id^="duplicateBugs"]').picker( { disableEmptySearch : true, - dropWidth : 'auto' + dropWidth : 'auto', + onReady: function(event) + { + $(event.picker.$container).addClass('required'); + } }); });