Skip to content

Commit

Permalink
Merge pull request #376 from Security-Onion-Solutions/cogburn/tune-on…
Browse files Browse the repository at this point in the history
…ly-in-alerts

"Tune Detections" Only in Alerts
  • Loading branch information
coreyogburn authored Mar 8, 2024
2 parents ea9b8af + e56960d commit f08e90f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -804,15 +804,15 @@ <h4 v-if="loaded">{{ i18n.eventTotal }} {{ totalEvents.toLocaleString() }}</h4>
{{ i18n.filterDrilldown }}
</v-list-item-title>
</v-list-item>
<v-list-item id="actionTuneDetection" v-if="quickActionDetId && $root.detectionsEnabled" dense :to='{ name: "detection", params: { id: quickActionDetId }, query: { tab: "tuning" } }' :title="i18n.tuneDetectionHelp">
<v-list-item id="actionTuneDetection" v-if="quickActionDetId && $root.detectionsEnabled && isCategory('alerts')" dense :to='{ name: "detection", params: { id: quickActionDetId }, query: { tab: "tuning" } }' :title="i18n.tuneDetectionHelp">
<v-list-item-icon>
<v-icon :alt="i18n.tuneDetection" color="white">fa-wrench</v-icon>
</v-list-item-icon>
<v-list-item-title class="white--text">
{{ i18n.tuneDetection }}
</v-list-item-title>
</v-list-item>
<v-list-item id="actionTuneDetection-disabled" v-if="!quickActionDetId && $root.detectionsEnabled" dense :title="i18n.tuneDetectionHelp">
<v-list-item id="actionTuneDetection-disabled" v-if="!quickActionDetId && $root.detectionsEnabled && isCategory('alerts')" dense :title="i18n.tuneDetectionHelp">
<v-list-item-icon>
<v-icon :alt="i18n.tuneDetection" color="grey">fa-wrench</v-icon>
</v-list-item-icon>
Expand Down

0 comments on commit f08e90f

Please sign in to comment.