Skip to content

Commit

Permalink
Merge pull request #197 from OpenBracketsCH/development
Browse files Browse the repository at this point in the history
Add support for negative numbers in level-attribute
  • Loading branch information
elektrolytmangel authored Oct 23, 2024
2 parents 38df744 + 4d1d613 commit 7ded843
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions app/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Defikarte.ch",
"slug": "Defikarte-ch",
"owner": "defikarte",
"version": "1.0.42",
"version": "1.0.43",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
Expand All @@ -16,14 +16,14 @@
"ios": {
"supportsTablet": true,
"bundleIdentifier": "ch.defikarte.app",
"buildNumber": "1.0.42",
"buildNumber": "1.0.43",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": true
}
},
"android": {
"package": "ch.defikarte.app",
"versionCode": 42,
"versionCode": 43,
"permissions": ["ACCESS_COARSE_LOCATION", "ACCESS_FINE_LOCATION"],
"config": {
"googleMaps": {
Expand Down
2 changes: 1 addition & 1 deletion app/src/config/createForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default [
},
{
name: 'level',
rules: { required: false, pattern: /^[0-9]*$/ },
rules: { required: false, pattern: /^-?[0-9]*$/ },
type: 'Text',
label: 'level',
placeholder: 'placeholder_level',
Expand Down

0 comments on commit 7ded843

Please sign in to comment.