Rewriting key of array

What seems to be the problem:

Public variable-array loses keys.

Steps to Reproduce:

Livewire controller:

class Farmnet extends Component
{
public $minutes = [0 =>'00',5 =>'05',10 =>'10',15 =>'15',20 =>'20',25 =>'25',30 =>'30',35 =>'35',40 =>'40',45 =>'45',50 =>'50',55 =>'55'];

Livewire blade:
array:12 [▼
0 => “00”
1 => “05”
2 => “10”
3 => “15”
4 => “20”
5 => “25”
6 => “30”
7 => “35”
8 => “40”
9 => “45”
10 => “50”
11 => “55”
]

Are you using the latest version of Livewire:

yes 2.3.2

This is fixed as of 2.3.4 - awesome work from everybody to get this sorted so quickly!!

Thanks! All right. I updated to the latest version 2.3.5.