Commit ce9929e0 authored by Tankred Hase's avatar Tankred Hase

Fix linking error in computed channel

parent 0588bf9b
......@@ -20,7 +20,7 @@ const ComputedChannel = store => {
all.forEach((c, i) => {
c.key = String(i);
c.statusLabel =
c.status == 'open' && !c.active ? 'Inactive' : toCaps(c.status);
c.status === 'open' && !c.active ? 'Inactive' : toCaps(c.status);
c.statusType =
c.status === 'open' && c.active
? 'success'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment