Skip to content

Commit

Permalink
Merge pull request #346 from Security-Onion-Solutions/jertel/suri
Browse files Browse the repository at this point in the history
reduce packet color intensity
  • Loading branch information
jertel authored Feb 13, 2024
2 parents 9e69c1f + dddd67f commit eafd1d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/js/routes/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ routes.push({ path: '/job/:jobId', name: 'job', component: {
this.job = job;
},
colorType(type) {
if (type.startsWith("ICMP")) return "error";
if (type.startsWith("DHCP")) return "warning";
if (type.startsWith("ICMP")) return "cyan";
if (type.startsWith("DHCP")) return "teal lighten-2";
if (type.startsWith("ARP")) return "secondary";
if (type.startsWith("DNS")) return "accent";
if (type.startsWith("TCP")) return "primary";
Expand Down

0 comments on commit eafd1d8

Please sign in to comment.