Skip to content

Commit

Permalink
Assigned null to undefined values. Added sensitivity note to app desc…
Browse files Browse the repository at this point in the history
…ription.
  • Loading branch information
hlngo committed Jun 12, 2017
1 parent 8355dba commit 7a83201
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions lib/openeis-ui/openeis/ui/static/openeis-ui/js/app.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion openeis/applications/airside_operation_sched_rcx.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def get_self_descriptor(cls):
note = 'Sensitivity: values can be 0 (low), ' \
'1 (normal), 2 (high), 3 (custom). Setting values of 0, 1, or 2 will ' \
'ignore other threshold values.'
return Descriptor(name=name, description=desc)
return Descriptor(name=name, description=desc, note=note)

@classmethod
def required_input(cls):
Expand Down
2 changes: 1 addition & 1 deletion openeis/applications/airside_supply_temp_rcx.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def get_self_descriptor(cls):
note = 'Sensitivity: values can be 0 (low), ' \
'1 (normal), 2 (high), 3 (custom). Setting values of 0, 1, or 2 will ' \
'ignore other threshold values.'
return Descriptor(name=name, description=desc)
return Descriptor(name=name, description=desc, note=note)

@classmethod
def required_input(cls):
Expand Down
4 changes: 2 additions & 2 deletions openeis/applications/economizer_rcx.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def get_self_descriptor(cls):
note = 'Sensitivity: values can be 0 (low), ' \
'1 (normal), 2 (high), 3 (custom). Setting values of 0, 1, or 2 will ' \
'ignore other threshold values.'
return Descriptor(name=name, description=desc)
return Descriptor(name=name, description=desc, note=note)

@classmethod
def required_input(cls):
Expand Down Expand Up @@ -409,7 +409,7 @@ def required_input(cls):
cls.cool_call_name:
InputDescriptor('CoolingCall/ChilledWaterValvePosition',
'AHU cooling coil valve command or RTU coolcall/'
'compressor command.', count_min=0),
'compressor command (required for Dx)', count_min=0),
cls.da_temp_name:
InputDescriptor('DischargeAirTemperature',
'AHU discharge-air temperature', count_min=0),
Expand Down

0 comments on commit 7a83201

Please sign in to comment.