update pending change stage

This commit is contained in:
tdgao
2026-03-23 13:41:27 -06:00
parent eb82562c86
commit ef6837d49e
2 changed files with 12 additions and 3 deletions
@@ -239,7 +239,9 @@
<div>
Your server will {{ pendingChange.verb.toLowerCase() }} to the "{{
pendingChange.planSize
}}" plan on {{ formatDate(pendingChange.date) }}.
}}" plan on
<span class="font-medium text-contrast">{{ formatDate(pendingChange.date) }}</span
>.
</div>
<ServersSpecs
class="!font-normal !text-primary"
@@ -61,11 +61,18 @@ export const ConfiguringNewServer: Story = {
},
}
export const WithPendingChange: Story = {
export const WithPendingDowngrade: Story = {
args: {
...baseServer,
name: 'Competitive UHC',
pendingChange,
pendingChange: {
...pendingChange,
planSize: 'Small',
ramGb: 4,
storageGb: 40,
cpuBurst: 4,
verb: 'Downgrade',
},
},
}