diff --git a/html/index.html b/html/index.html index 4e3fae7bd..519e98bc0 100644 --- a/html/index.html +++ b/html/index.html @@ -1048,15 +1048,15 @@

fa-comments -
Overview
+
{{ i18n.overview }}
fa-paperclip -
Comments
+
{{ i18n.comments }}
- + fa-eye -
Detection Source
+
{{ i18n.detectionSource }}
fa-link -
Tuning
+
{{ i18n.tuning }}
fa-history -
History
+
{{ i18n.history }}
@@ -4767,7 +4767,7 @@

{{ i18n.settingsCustomized }} {{ settingsCustomized }}
  • {{i18n.configQLSigmaHeader}}
      -
    • +
    • {{i18n.configQLSigmaRuleset}}
    diff --git a/html/js/i18n.js b/html/js/i18n.js index fce7cf2c4..c6e58da20 100644 --- a/html/js/i18n.js +++ b/html/js/i18n.js @@ -276,6 +276,7 @@ const i18n = { detectionId: 'Detection Id', detectionLogic: 'Detection Logic', detectionSeverity: 'Severity', + detectionSource: 'Detection Source', detectionTitle: 'Detection Title', detectionType: 'Detection Type', disable: 'Disable', @@ -575,6 +576,7 @@ const i18n = { osUptime: 'OS Uptime', other: 'Other', overrideExpand: 'Show all override fields', + overview: 'Overview', owner: 'Owner', packages: 'Packages', packets: 'Captured Packets', @@ -819,6 +821,7 @@ const i18n = { trafficManOutAbbr: 'Mgmt Out', transcriptCyberChefHelp: 'Send the transcript to CyberChef', ttr: 'Time Tracking', + tuning: 'Tuning', type: 'Type', unaccepted: 'Pending', unassigned: 'unassigned', diff --git a/html/js/routes/detection.js b/html/js/routes/detection.js index ca1c5192f..19369f752 100644 --- a/html/js/routes/detection.js +++ b/html/js/routes/detection.js @@ -151,7 +151,11 @@ routes.push({ path: '/detection/:id', name: 'detection', component: { this.loadUrlParameters(); }, loadUrlParameters() { - + this.$nextTick(() => { + if (this.$route.query.tab) { + this.activeTab = this.$route.query.tab; + } + }); }, newDetection() { let author = [this.$root.user.firstName, this.$root.user.lastName].filter(x => x).join(' ');