We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8edff73 + 4f5f79a commit 2b96a22Copy full SHA for 2b96a22
src/Views/Form.vala
@@ -27,7 +27,7 @@ public class Views.Form : Adw.Bin {
27
Regex? identifier_regex = null;
28
try {
29
project_name_regex = new Regex ("^[a-z]+[a-z0-9]*$");
30
- identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9]+(\\.[a-z0-9]+)*$");
+ identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9_]+(\\.[a-z0-9_]+)*$");
31
} catch (Error e) {
32
critical (e.message);
33
}
0 commit comments