Skip to content

Commit

Permalink
chore: web display
Browse files Browse the repository at this point in the history
  • Loading branch information
kvinwang committed Dec 18, 2024
1 parent de5649c commit eeb9228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions teepod/src/console.html
Original file line number Diff line number Diff line change
Expand Up @@ -635,15 +635,15 @@ <h2>VM List</h2>
<td style="padding: 12px;">
<span :class="'status-' + vm.status.toLowerCase()">{{ vmStatus(vm) }}</span>
</td>
<td style="padding: 12px;">{{ vm.uptime }}</td>
<td style="padding: 12px;">{{ vm.status == 'running' ? vm.uptime : '' }}</td>
<td style="padding: 12px;">
<div class="vm-actions">
<button class="action-btn primary" @click="startVm(vm.id)" title="Start VM">
<i class="fas fa-play"></i> Start
</button>
<button v-if="imageFeatures(vm).graceful_shutdown" class="action-btn warning"
@click="shutdownVm(vm.id)" title="Shutdown VM">
<i class="fas fa-stop"></i> Stop
<i class="fas fa-stop"></i> Shutdown
</button>
<button class="action-btn danger" @click="stopVm(vm.id)" title="Stop VM">
<i class="fas fa-kill"></i> Kill
Expand Down

0 comments on commit eeb9228

Please sign in to comment.