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

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)),
]
}