Merge pull request #18483 from ShirasawaSama/patch-40

fix: fix color of Attach Webpage button when model not support file uploads
This commit is contained in:
Tim Baek
2025-10-21 16:26:27 -04:00
committed by GitHub

View File

@@ -199,7 +199,9 @@
className="w-full"
>
<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={() => {
if (fileUploadEnabled) {
showAttachWebpageModal = true;