Visual Console Refactor: added missing returns
Former-commit-id: 48c7115b9d6220aa05e7b98c668337e523a83d29
This commit is contained in:
parent
b4c27ca12a
commit
58b074b006
|
@ -88,7 +88,7 @@ function decodeProps(data: UnknownObject) {
|
||||||
case ItemType.STATIC_GRAPH:
|
case ItemType.STATIC_GRAPH:
|
||||||
return staticGraphPropsDecoder(data);
|
return staticGraphPropsDecoder(data);
|
||||||
case ItemType.MODULE_GRAPH:
|
case ItemType.MODULE_GRAPH:
|
||||||
throw new TypeError("decoder not found");
|
return moduleGraphPropsDecoder(data);
|
||||||
case ItemType.SIMPLE_VALUE:
|
case ItemType.SIMPLE_VALUE:
|
||||||
case ItemType.SIMPLE_VALUE_MAX:
|
case ItemType.SIMPLE_VALUE_MAX:
|
||||||
case ItemType.SIMPLE_VALUE_MIN:
|
case ItemType.SIMPLE_VALUE_MIN:
|
||||||
|
@ -104,7 +104,7 @@ function decodeProps(data: UnknownObject) {
|
||||||
case ItemType.ICON:
|
case ItemType.ICON:
|
||||||
return iconPropsDecoder(data);
|
return iconPropsDecoder(data);
|
||||||
case ItemType.SERVICE:
|
case ItemType.SERVICE:
|
||||||
throw new TypeError("decoder not found");
|
return servicePropsDecoder(data);
|
||||||
case ItemType.GROUP_ITEM:
|
case ItemType.GROUP_ITEM:
|
||||||
return groupPropsDecoder(data);
|
return groupPropsDecoder(data);
|
||||||
case ItemType.BOX_ITEM:
|
case ItemType.BOX_ITEM:
|
||||||
|
@ -114,8 +114,9 @@ function decodeProps(data: UnknownObject) {
|
||||||
case ItemType.AUTO_SLA_GRAPH:
|
case ItemType.AUTO_SLA_GRAPH:
|
||||||
return eventsHistoryPropsDecoder(data);
|
return eventsHistoryPropsDecoder(data);
|
||||||
case ItemType.DONUT_GRAPH:
|
case ItemType.DONUT_GRAPH:
|
||||||
|
return donutGraphPropsDecoder(data);
|
||||||
case ItemType.BARS_GRAPH:
|
case ItemType.BARS_GRAPH:
|
||||||
throw new TypeError("decoder not found");
|
return barsGraphPropsDecoder(data);
|
||||||
case ItemType.CLOCK:
|
case ItemType.CLOCK:
|
||||||
return clockPropsDecoder(data);
|
return clockPropsDecoder(data);
|
||||||
case ItemType.COLOR_CLOUD:
|
case ItemType.COLOR_CLOUD:
|
||||||
|
@ -524,7 +525,8 @@ export default class VisualConsole {
|
||||||
endY,
|
endY,
|
||||||
width: 0,
|
width: 0,
|
||||||
height: 0,
|
height: 0,
|
||||||
lineWidth: this.props.relationLineWidth
|
lineWidth: this.props.relationLineWidth,
|
||||||
|
color: "#CCCCCC"
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
// Save a reference to the line item.
|
// Save a reference to the line item.
|
||||||
|
|
Loading…
Reference in New Issue