fix: fix color of Attach Webpage button when model not support file uploads

This commit is contained in:
Shirasawa 2025-10-21 16:05:56 +08:00 committed by GitHub
parent e24fec0de4
commit e225435c8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -199,7 +199,9 @@
className="w-full" className="w-full"
> >
<DropdownMenu.Item <DropdownMenu.Item
class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl" class="flex gap-2 items-center px-3 py-1.5 text-sm cursor-pointer hover:bg-gray-50 dark:hover:bg-gray-800 rounded-xl {!fileUploadEnabled
? 'opacity-50'
: ''}"
on:click={() => { on:click={() => {
if (fileUploadEnabled) { if (fileUploadEnabled) {
showAttachWebpageModal = true; showAttachWebpageModal = true;