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.
1 parent a1fd023 commit ea20164Copy full SHA for ea20164
src/Views/Form.vala
@@ -21,7 +21,7 @@ public class Views.Form : Adw.Bin {
21
Regex? identifier_regex = null;
22
try {
23
project_name_regex = new Regex ("^[a-z]+[a-z0-9]*$");
24
- identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9]+(\\.[a-z0-9]+)*$");
+ identifier_regex = new Regex ("^[a-z]+\\.[a-z0-9_]+(\\.[a-z0-9_]+)*$");
25
} catch (Error e) {
26
critical (e.message);
27
}
0 commit comments