From 7e095a93fb3ca55aed8cda1b36bae2d6aba6b415 Mon Sep 17 00:00:00 2001 From: sunhao Date: Wed, 10 Dec 2025 16:12:15 +0800 Subject: [PATCH] * [ui] fix popover menu block user to click item in ai prompts menu. --- module/ai/ui/promptmenu.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/ai/ui/promptmenu.html.php b/module/ai/ui/promptmenu.html.php index 72babcfd8b..c3eaa2012f 100644 --- a/module/ai/ui/promptmenu.html.php +++ b/module/ai/ui/promptmenu.html.php @@ -66,7 +66,7 @@ $promptMenuInject = function() helper::createLink('ai', 'promptExecute', "promptId=$prompt->id&objectId=$currentObjectId&auto=0"), $prompt->name . ($prompt->status != 'active' ? '' . $this->lang->ai->prompts->statuses[$prompt->status] . '' : ''), '', - "class='prompt ajax-submit' style='width: 100%;'" . (empty($prompt->unauthorized) ? '' : ' disabled') . (empty($prompt->desc) ? '' : " data-toggle='popover' data-container='body' data-trigger='hover' data-content='$prompt->desc' data-title='$prompt->name' data-placement='left'"), + "class='prompt ajax-submit' style='width: 100%;'" . (empty($prompt->unauthorized) ? '' : ' disabled') . (empty($prompt->desc) ? '' : " title='$prompt->desc' data-placement='left'"), 'btn ghost size-sm font-medium text-left' ); $html .= '';