Skip to content

Commit

Permalink
Fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Kapsiak committed Oct 29, 2024
1 parent 3b21120 commit ad7beff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
let ldo_barcode = null;
let is_engine_code_valid = true;
let is_ldo_code_valid = true;
let engine_code_regex= /320E[LH]*/;
let ldo_code_regex= /LDO*/;
let engine_code_regex= /320E[LH]/;
let ldo_code_regex= /LDO/;
let ok_to_submit = false;
let is_decoding_engine = false;
Expand Down

0 comments on commit ad7beff

Please sign in to comment.