Skip to content

Commit

Permalink
Update InPlaceEdit.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
chipspeak authored May 13, 2024
1 parent 266fea2 commit 3547c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ui/InPlaceEdit.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
export let allowedCategories = []; // Prop to accept an array of allowed categories
// regex to check for prohibited characters
const prohibitedCharacters = /[^a-zA-Z0-9\s]/;
const prohibitedCharacters = /[^a-zA-Z0-9\s.]/;
const dispatch = createEventDispatcher();
let editing = false,
Expand Down

0 comments on commit 3547c8c

Please sign in to comment.