Show VM screenshot

This commit is contained in:
2023-10-18 10:23:40 +02:00
parent 62364594c9
commit 3042bbdac6
7 changed files with 82 additions and 4 deletions

@ -50,7 +50,11 @@ function VMRouteBody(p: { vm: VMInfo }): React.ReactElement {
</span>
}
>
<VMDetails vm={p.vm} editable={false} />
<VMDetails
vm={p.vm}
editable={false}
screenshot={p.vm.vnc_access && state === "Running"}
/>
</VirtWebRouteContainer>
);
}