Copyable Behavior Changed
I have this code
and it seems that in v3.. it copies the original value but in v4, it copies that masked value
and it seems that in v3.. it copies the original value but in v4, it copies that masked value
TextColumn::make('code')
->copyable()
->formatStateUsing(fn (string $state): string => Str::mask($state, '*', 10)),->copyableState(fn (string $state): string => $state)