Recognize homefront operations as combat sites
This commit is contained in:
@@ -12,7 +12,6 @@ interface SignatureCategoriesProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const SignatureCategories = ({ categories, onToggleCategory }: SignatureCategoriesProps) => {
|
export const SignatureCategories = ({ categories, onToggleCategory }: SignatureCategoriesProps) => {
|
||||||
console.log(categories);
|
|
||||||
if (categories.length === 0) {
|
if (categories.length === 0) {
|
||||||
return (
|
return (
|
||||||
<Card className="bg-slate-800/30 border-slate-700">
|
<Card className="bg-slate-800/30 border-slate-700">
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ const allCategories = new Map<string, SignatureCategoryMeta>([
|
|||||||
color: "text-slate-400 border-slate-600"
|
color: "text-slate-400 border-slate-600"
|
||||||
}],
|
}],
|
||||||
["combat", {
|
["combat", {
|
||||||
matcher: /^combat/i,
|
matcher: /^(?:combat|homefront)/i,
|
||||||
id: "combat",
|
id: "combat",
|
||||||
name: 'Combat Sites',
|
name: 'Combat Sites',
|
||||||
icon: <Zap className="h-4 w-4 text-red-400" />,
|
icon: <Zap className="h-4 w-4 text-red-400" />,
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import { parseSignature, parseScannedPercentage } from "@/utils/signatureParser"
|
|||||||
import { getSystemId } from "@/utils/systemApi";
|
import { getSystemId } from "@/utils/systemApi";
|
||||||
import pb from "@/lib/pocketbase";
|
import pb from "@/lib/pocketbase";
|
||||||
import { SigviewRecord as Signature } from "@/lib/pbtypes";
|
import { SigviewRecord as Signature } from "@/lib/pbtypes";
|
||||||
import { udpSocket } from "bun";
|
|
||||||
|
|
||||||
export const SystemView = () => {
|
export const SystemView = () => {
|
||||||
const { system, region } = useParams();
|
const { system, region } = useParams();
|
||||||
|
|||||||
Reference in New Issue
Block a user