Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 26c0c55

Browse files
committed
Only Add CID Labels to channels with ids
1 parent 9bf76dc commit 26c0c55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/lightning-core/accounts/ChannelListItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const ChannelListItem = ({ id, capacity, localBalance, remoteBalance,
117117
<div style={ styles.channel } onContextMenu={ handleMenu }>
118118
<div style={ styles.split }>
119119
<div style={ styles.id }>
120-
CID: { id }
120+
{ status === 'pending' ? 'PENDING' : `CID:${ id }` }
121121
{ status !== 'pending' && (
122122
<div style={ styles.closeLabel } onClick={ showPopupOrClose }>
123123
<Icon small name="close" />

0 commit comments

Comments
 (0)