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

Commit ce9929e

Browse files
committed
Fix linking error in computed channel
1 parent 0588bf9 commit ce9929e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/computed/channel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const ComputedChannel = store => {
2020
all.forEach((c, i) => {
2121
c.key = String(i);
2222
c.statusLabel =
23-
c.status == 'open' && !c.active ? 'Inactive' : toCaps(c.status);
23+
c.status === 'open' && !c.active ? 'Inactive' : toCaps(c.status);
2424
c.statusType =
2525
c.status === 'open' && c.active
2626
? 'success'

0 commit comments

Comments
 (0)