@@ -11,6 +11,12 @@ <h1 class="app-title">dstack-vmm</h1>
1111 < span class ="version-badge "> v{{ version.version }}</ span >
1212 </ div >
1313 < div class ="header-right ">
14+ < button class ="btn-primary " @click ="showDeployDialog() ">
15+ < svg width ="16 " height ="16 " viewBox ="0 0 16 16 " fill ="none ">
16+ < path d ="M8 3V13M3 8H13 " stroke ="currentColor " stroke-width ="2 " stroke-linecap ="round "/>
17+ </ svg >
18+ Deploy Instance
19+ </ button >
1420 < div class ="system-menu ">
1521 < button class ="btn-icon system-menu-btn " @click ="toggleSystemMenu($event) " title ="System Menu ">
1622 < svg width ="16 " height ="16 " viewBox ="0 0 16 16 " fill ="none ">
@@ -24,14 +30,22 @@ <h1 class="app-title">dstack-vmm</h1>
2430 </ svg >
2531 Reload VMs
2632 </ button >
33+ < button class ="dropdown-item " @click ="openApiDocs() ">
34+ < svg width ="14 " height ="14 " viewBox ="0 0 14 14 " fill ="none ">
35+ < path d ="M3 3h8v8H3z " stroke ="currentColor " stroke-width ="1.3 " stroke-linejoin ="round "/>
36+ < path d ="M5 5h4M5 7h4M5 9h2 " stroke ="currentColor " stroke-width ="1.3 " stroke-linecap ="round "/>
37+ </ svg >
38+ API Docs
39+ </ button >
40+ < button class ="dropdown-item " @click ="openLegacyUi() ">
41+ < svg width ="14 " height ="14 " viewBox ="0 0 14 14 " fill ="none ">
42+ < path d ="M3 3h8v8H3z " stroke ="currentColor " stroke-width ="1.3 " stroke-linejoin ="round "/>
43+ < path d ="M4.5 6.5l1.5 1.5 3.5-3.5 " stroke ="currentColor " stroke-width ="1.3 " stroke-linecap ="round " stroke-linejoin ="round "/>
44+ </ svg >
45+ Legacy UI
46+ </ button >
2747 </ div >
2848 </ div >
29- < button class ="btn-primary " @click ="showDeployDialog() ">
30- < svg width ="16 " height ="16 " viewBox ="0 0 16 16 " fill ="none ">
31- < path d ="M8 3V13M3 8H13 " stroke ="currentColor " stroke-width ="2 " stroke-linecap ="round "/>
32- </ svg >
33- Deploy Instance
34- </ button >
3549 </ div >
3650 </ div >
3751 </ header >
@@ -264,6 +278,10 @@ <h1 class="app-title">dstack-vmm</h1>
264278 < span class ="detail-label "> Disk Type</ span >
265279 < span class ="detail-value "> {{ vm.configuration?.disk_type || 'virtio-pci' }}</ span >
266280 </ div >
281+ < div class ="detail-item ">
282+ < span class ="detail-label "> TEE</ span >
283+ < span class ="detail-value "> {{ vm.configuration?.no_tee ? 'Disabled' : 'Enabled' }}</ span >
284+ </ div >
267285 < div class ="detail-item " v-if ="vm.configuration?.gpus && vm.configuration.gpus.length > 0 ">
268286 < span class ="detail-label "> GPUs</ span >
269287 < div >
0 commit comments