File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 56
56
"type" : " HaloPSA" ,
57
57
"cat" : " Ticketing" ,
58
58
"forceSyncButton" : false ,
59
- "helpText" : " This integration allows you to use to send alerts to your ticketing system." ,
59
+ "helpText" : " This integration allows you to send alerts to your ticketing system." ,
60
60
"SettingOptions" : [
61
61
{
62
62
"type" : " input" ,
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ export const appApi = baseApi.injectEndpoints({
56
56
onePerTenant,
57
57
sendtoIntegration,
58
58
logsToInclude,
59
+ Severity,
59
60
} ) => ( {
60
61
path : '/api/ExecNotificationConfig' ,
61
62
data : {
@@ -70,6 +71,7 @@ export const appApi = baseApi.injectEndpoints({
70
71
addChocoApp : addChocoApp ,
71
72
onePerTenant : onePerTenant ,
72
73
logsToInclude : logsToInclude ,
74
+ Severity : Severity ,
73
75
sendtoIntegration : sendtoIntegration ,
74
76
} ,
75
77
method : 'post' ,
Original file line number Diff line number Diff line change @@ -1078,6 +1078,10 @@ const NotificationsSettings = () => {
1078
1078
label : m ,
1079
1079
value : m ,
1080
1080
} ) ) ,
1081
+ Severity : notificationListResult . data ?. Severity ?. map ( ( s ) => ( {
1082
+ label : s ,
1083
+ value : s ,
1084
+ } ) ) ,
1081
1085
} }
1082
1086
onSubmit = { onSubmit }
1083
1087
render = { ( { handleSubmit, submitting, values } ) => {
@@ -1130,6 +1134,18 @@ const NotificationsSettings = () => {
1130
1134
] }
1131
1135
/>
1132
1136
</ CCol >
1137
+ < CCol >
1138
+ < RFFSelectSearch
1139
+ multi = { true }
1140
+ label = "Choose which severity of alert you want to be notified for."
1141
+ name = "Severity"
1142
+ values = { [
1143
+ { value : 'Alert' , name : 'Alert' } ,
1144
+ { value : 'Error' , name : 'Error' } ,
1145
+ { value : 'Info' , name : 'Info' } ,
1146
+ ] }
1147
+ />
1148
+ </ CCol >
1133
1149
< CCol >
1134
1150
< RFFCFormSwitch
1135
1151
name = "onePerTenant"
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ const columns = [
42
42
name : 'Estimated Term' ,
43
43
selector : ( row ) => row [ 'EstTerm' ] ,
44
44
sortable : true ,
45
+ cell : ( row ) => CellTip ( row [ 'EstTerm' ] ) ,
45
46
exportSelector : 'EstTerm' ,
46
47
} ,
47
48
{
You can’t perform that action at this time.
0 commit comments