1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-22 20:55:03 +03:00

serial: fixed missing port names in builtin profiles

This commit is contained in:
Eugene Pankov 2021-07-18 15:22:46 +02:00
parent 1eed32f8d8
commit 439e407595
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -72,6 +72,9 @@ export class SerialProfilesService extends ProfileProvider<SerialProfile> {
name: p.description ? `Serial: ${p.description}` : 'Serial',
icon: 'fas fa-microchip',
isBuiltin: true,
options: {
port: p.name,
},
} as SerialProfile)),
]
}