diff options
author | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-08-30 16:20:14 +0800 |
---|---|---|
committer | GuangrongFu <fu.guangrong@zte.com.cn> | 2018-08-30 18:37:17 +0800 |
commit | 52147c8b4e9a874322fd637766a7343f8db0b5c7 (patch) | |
tree | ae36ddadff6e729af211c28c69c8dc6d8202c963 | |
parent | 12a38b041d2a96cb641909cb40b96e941cc76354 (diff) |
Fixed a Filter Bug
Change-Id: I2a254844ad67913ed502c566f314ea12dc3a082c
Issue-ID: HOLMES-163
Signed-off-by: GuangrongFu <fu.guangrong@zte.com.cn>
-rw-r--r-- | rulemgt-frontend/src/app/correlation-ruleList/alarmRule.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rulemgt-frontend/src/app/correlation-ruleList/alarmRule.component.ts b/rulemgt-frontend/src/app/correlation-ruleList/alarmRule.component.ts index a8a4c07..cb413b5 100644 --- a/rulemgt-frontend/src/app/correlation-ruleList/alarmRule.component.ts +++ b/rulemgt-frontend/src/app/correlation-ruleList/alarmRule.component.ts @@ -67,7 +67,7 @@ export class AlarmRule implements OnInit { this.ruleRequest.enabled = 0; } else { this.activeText = "option_all"; - this.ruleRequest.enabled = null; + this.ruleRequest.enabled = 2; } } |