Update AppImage

This commit is contained in:
MacRimi
2025-12-06 13:11:04 +01:00
parent c62f0dea6f
commit a1089460d7
2 changed files with 16 additions and 9 deletions

View File

@@ -1100,7 +1100,10 @@ export default function Hardware() {
{getMonitoringToolRecommendation(selectedGPU.vendor)}
</p>
{selectedGPU.vendor.toLowerCase().includes("nvidia") && (
<Button onClick={handleInstallNvidiaDriver} className="w-full">
<Button
onClick={handleInstallNvidiaDriver}
className="w-full bg-blue-600 hover:bg-blue-700 text-white"
>
<>
<Download className="mr-2 h-4 w-4" />
Install NVIDIA Drivers

View File

@@ -144,14 +144,18 @@ export function ScriptTerminalModal({
</Dialog>
{currentInteraction && (
<Dialog
open={true}
onOpenChange={() => {
console.log("[v0] Interaction modal onOpenChange triggered")
setCurrentInteraction(null)
}}
>
<DialogContent>
<Dialog open={true} modal={true}>
<DialogContent
className="max-w-4xl max-h-[80vh] overflow-y-auto"
onInteractOutside={(e) => {
// Prevent closing when clicking outside
e.preventDefault()
}}
onEscapeKeyDown={(e) => {
// Prevent closing with ESC key
e.preventDefault()
}}
>
<DialogTitle>{currentInteraction.title}</DialogTitle>
<div className="space-y-4">
<p className="whitespace-pre-wrap">{currentInteraction.message}</p>