Skip to content

Commit

Permalink
Update TrafficLightProtocol.ts to conform with official TLP capitalis…
Browse files Browse the repository at this point in the history
…ation

proposed update for compliance with https://www.first.org/tlp/ - all levels must be capitalised.
  • Loading branch information
vibenas authored Nov 8, 2023
1 parent 340c273 commit b034130
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ export const TrafficLightProtocol = {
path: "*.traffic_light_protocol",
type: PropertyType.Enum,
options: [
{ value: "red", text: "Red" },
{ value: "amber_strict", text: "Amber+Strict" },
{ value: "amber", text: "Amber" },
{ value: "green", text: "Green" },
{ value: "clear", text: "Clear" },
{ value: "red", text: "RED" },
{ value: "amber_strict", text: "AMBER+STRICT" },
{ value: "amber", text: "AMBER" },
{ value: "green", text: "GREEN" },
{ value: "clear", text: "CLEAR" },
]
}

0 comments on commit b034130

Please sign in to comment.