diff --git a/src/Views/Form.vala b/src/Views/Form.vala index 6b825f9..bf6f03c 100644 --- a/src/Views/Form.vala +++ b/src/Views/Form.vala @@ -21,7 +21,7 @@ public class Views.Form : Adw.Bin { Regex? identifier_regex = null; try { project_name_regex = new Regex ("^[a-z]+[a-z0-9]*$"); - identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9]+(\\.[a-z0-9]+)*$"); + identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9_]+(\\.[a-z0-9_]+)*$"); } catch (Error e) { critical (e.message); }