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> <div>
Your server will {{ pendingChange.verb.toLowerCase() }} to the "{{ Your server will {{ pendingChange.verb.toLowerCase() }} to the "{{
pendingChange.planSize pendingChange.planSize
}}" plan on {{ formatDate(pendingChange.date) }}. }}" plan on
<span class="font-medium text-contrast">{{ formatDate(pendingChange.date) }}</span
>.
</div> </div>
<ServersSpecs <ServersSpecs
class="!font-normal !text-primary" class="!font-normal !text-primary"
@@ -61,11 +61,18 @@ export const ConfiguringNewServer: Story = {
}, },
} }
export const WithPendingChange: Story = { export const WithPendingDowngrade: Story = {
args: { args: {
...baseServer, ...baseServer,
name: 'Competitive UHC', name: 'Competitive UHC',
pendingChange, pendingChange: {
...pendingChange,
planSize: 'Small',
ramGb: 4,
storageGb: 40,
cpuBurst: 4,
verb: 'Downgrade',
},
}, },
} }