Skip to content

Commit

Permalink
Merge pull request #14 from cs-dev-chaudhary/patch-1
Browse files Browse the repository at this point in the history
BUG fixes: bug_id=1015878
  • Loading branch information
cs-suyog-jinturkar authored Mar 28, 2024
2 parents fa214e7 + 6128d00 commit 3bd4675
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions widget/edit.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
(function () {
angular
.module('cybersponse')
.controller('editOutbreakAlertConfiguration100Ctrl', editOutbreakAlertConfiguration100Ctrl);
.controller('editOutbreakAlertConfiguration101Ctrl', editOutbreakAlertConfiguration101Ctrl);

editOutbreakAlertConfiguration100Ctrl.$inject = ['$scope', '$uibModalInstance', 'config'];
editOutbreakAlertConfiguration101Ctrl.$inject = ['$scope', '$uibModalInstance', 'config'];

function editOutbreakAlertConfiguration100Ctrl($scope, $uibModalInstance, config) {
function editOutbreakAlertConfiguration101Ctrl($scope, $uibModalInstance, config) {
$scope.cancel = cancel;
$scope.save = save;
$scope.config = config;
Expand Down
4 changes: 2 additions & 2 deletions widget/edit.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Copyright start
<!-- Copyright start
MIT License
Copyright (c) 2024 Fortinet Inc
Copyright end */
Copyright end -->
<form data-ng-submit="save()" class="noMargin" name="editWidgetForm" data-ng-class="{'state-wait': processing }"
novalidate>
<div class="modal-header">
Expand Down
6 changes: 3 additions & 3 deletions widget/view.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
(function () {
angular
.module('cybersponse')
.controller('outbreakAlertConfiguration100Ctrl', outbreakAlertConfiguration100Ctrl);
.controller('outbreakAlertConfiguration101Ctrl', outbreakAlertConfiguration101Ctrl);

outbreakAlertConfiguration100Ctrl.$inject = ['$scope', 'Entity', '$http', 'WizardHandler', '$controller'];
outbreakAlertConfiguration101Ctrl.$inject = ['$scope', 'Entity', '$http', 'WizardHandler', '$controller'];

function outbreakAlertConfiguration100Ctrl($scope, Entity, $http, WizardHandler, $controller) {
function outbreakAlertConfiguration101Ctrl($scope, Entity, $http, WizardHandler, $controller) {
$controller('BaseConnectorCtrl', {
$scope: $scope
});
Expand Down
12 changes: 6 additions & 6 deletions widget/view.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Copyright start
<!-- Copyright start
MIT License
Copyright (c) 2024 Fortinet Inc
Copyright end */
Copyright end -->
<div class="modal-header">
<h3 class="modal-title col-md-9">Outbreak Response Framework Configuration</h3>
</div>
Expand All @@ -14,7 +14,7 @@ <h3 class="modal-title col-md-9">Outbreak Response Framework Configuration</h3>
<div class="display-table fixed-table-layout full-height full-width">
<div class="full-height display-table-cell vertical-align-middle">
<div class="col-md-6 display-flex" style="justify-content: center">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.0/images/outbreakAlert.png">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.1/images/outbreakAlert.png">
</div>
<div class="col-md-6 prerequisites-section padding-bottom-25 padding-left-0">
<div class="font-size-40 line-height-1">Outbreak Response Framework Configuration</div><br />
Expand All @@ -36,7 +36,7 @@ <h3 class="modal-title col-md-9">Outbreak Response Framework Configuration</h3>
<div class="display-table fixed-table-layout full-height full-width">
<div class="full-height display-table-cell vertical-align-middle">
<div class="col-md-6 display-flex" style="justify-content: center">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.0/images/threatDetectionIntegrations.png">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.1/images/threatDetectionIntegrations.png">
</div>
<div class="col-md-6 prerequisites-section padding-bottom-25 padding-left-0">
<div class="font-size-40 line-height-1">Threat Detection Integrations</div><br/>
Expand Down Expand Up @@ -74,7 +74,7 @@ <h3 class="modal-title col-md-9">Outbreak Response Framework Configuration</h3>
<div class="display-table fixed-table-layout full-height full-width">
<div class="full-height display-table-cell vertical-align-middle">
<div class="col-md-6 display-flex" style="justify-content: center">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.0/images/ticketingIntegrations.png">
<img class="img-responsive step-image" src="widgets/installed/outbreakAlertConfiguration-1.0.1/images/ticketingIntegrations.png">
</div>
<div class="col-md-6 prerequisites-section padding-bottom-25 padding-left-0">
<div class="font-size-40 line-height-1">Ticketing/ITSM Integrations</div><br/>
Expand Down Expand Up @@ -104,7 +104,7 @@ <h3 class="modal-title col-md-9">Outbreak Response Framework Configuration</h3>
<div class="display-table fixed-table-layout full-height full-width">
<div class="full-height display-table-cell vertical-align-middle">
<div class="col-md-6 display-flex" style="justify-content: center">
<img class="img-responsive" src="widgets/installed/outbreakAlertConfiguration-1.0.0/images/finish.png">
<img class="img-responsive" src="widgets/installed/outbreakAlertConfiguration-1.0.1/images/finish.png">
</div>
<div class="col-md-6 prerequisites-section padding-bottom-25 padding-left-0">
<div class="font-size-40 line-height-1">You are all set!</div><br />
Expand Down

0 comments on commit 3bd4675

Please sign in to comment.