maxwidthchars -> 1

This commit is contained in:
end-4
2024-05-24 20:12:10 +07:00
parent 10aed6353a
commit a004acc05d
5 changed files with 11 additions and 11 deletions
@@ -28,7 +28,7 @@ const BluetoothDevice = (device) => {
children: [
Label({
xalign: 0,
maxWidthChars: 10,
maxWidthChars: 1,
truncate: 'end',
label: device.name,
className: 'txt-small',
@@ -38,7 +38,7 @@ const BluetoothDevice = (device) => {
}),
Label({
xalign: 0,
maxWidthChars: 10,
maxWidthChars: 1,
truncate: 'end',
label: device.connected ? 'Connected' : (device.paired ? 'Paired' : ''),
className: 'txt-subtext',