mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-12-14 16:16:21 +00:00
Update AppImage
This commit is contained in:
@@ -1100,7 +1100,10 @@ export default function Hardware() {
|
|||||||
{getMonitoringToolRecommendation(selectedGPU.vendor)}
|
{getMonitoringToolRecommendation(selectedGPU.vendor)}
|
||||||
</p>
|
</p>
|
||||||
{selectedGPU.vendor.toLowerCase().includes("nvidia") && (
|
{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" />
|
<Download className="mr-2 h-4 w-4" />
|
||||||
Install NVIDIA Drivers
|
Install NVIDIA Drivers
|
||||||
|
|||||||
@@ -144,14 +144,18 @@ export function ScriptTerminalModal({
|
|||||||
</Dialog>
|
</Dialog>
|
||||||
|
|
||||||
{currentInteraction && (
|
{currentInteraction && (
|
||||||
<Dialog
|
<Dialog open={true} modal={true}>
|
||||||
open={true}
|
<DialogContent
|
||||||
onOpenChange={() => {
|
className="max-w-4xl max-h-[80vh] overflow-y-auto"
|
||||||
console.log("[v0] Interaction modal onOpenChange triggered")
|
onInteractOutside={(e) => {
|
||||||
setCurrentInteraction(null)
|
// Prevent closing when clicking outside
|
||||||
}}
|
e.preventDefault()
|
||||||
>
|
}}
|
||||||
<DialogContent>
|
onEscapeKeyDown={(e) => {
|
||||||
|
// Prevent closing with ESC key
|
||||||
|
e.preventDefault()
|
||||||
|
}}
|
||||||
|
>
|
||||||
<DialogTitle>{currentInteraction.title}</DialogTitle>
|
<DialogTitle>{currentInteraction.title}</DialogTitle>
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<p className="whitespace-pre-wrap">{currentInteraction.message}</p>
|
<p className="whitespace-pre-wrap">{currentInteraction.message}</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user