enum value in Forms\Components\Select

My enum labels shows both as Select element value and label.

Using Filament docs example here as a base.
enum Status: string implements HasLabel
{
    case DRAFT = 'My draft label';    
    public function getLabel(): ?string
    {
        return $this->name;
    }
}

Select::make('status')
    ->options(Status::class)

It produces:
<option value="My draft label">My draft label</option>

I'd like to have:
<option value="DRAFT">My draft label</option>

How to "fix" this?
Was this page helpful?