(group: ToolkitConnectionGroup, showOwnerLabels: boolean)
| 299 | `${ownerLabel(group.owner)} ${group.integration} / ${group.connection}`; |
| 300 | |
| 301 | const connectionTitleForHost = (group: ToolkitConnectionGroup, showOwnerLabels: boolean): string => |
| 302 | showOwnerLabels ? connectionTitle(group) : `${group.integration} / ${group.connection}`; |
| 303 | |
| 304 | const connectionDisplayTitle = (group: ToolkitConnectionGroup, meta: IntegrationMeta): string => |
| 305 | group.connection === "built-in" || group.connection === "default" ? meta.name : group.connection; |
no test coverage detected