Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaSetyadi committed May 10, 2022
1 parent c8ca7ef commit a0deefb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "form-gear",
"version": "0.1.0",
"version": "0.1.1",
"description": "FormGear is a framework engine for dynamic form creation and complex form processing and validation for data collection.",
"info": "It is easy to use and efficiently handle nested inquiries to capture everything down to the last detail. Unlike other similar framework, validation is handled in a FALSE condition in which each field is validated against a test equation. This leads to a more efficient and effective way to validate each component.",
"homepage": "https://solid-form-gear.vercel.app/",
Expand All @@ -27,7 +27,9 @@
"form-builder",
"survey-builder",
"solid-js",
"data collection",
"data-collection",
"survey",
"census",
"solidhack",
"best_ecosystem"
],
Expand Down
4 changes: 2 additions & 2 deletions src/GlobalFunction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ export const saveAnswer = (dataKey: string, attributeParam: any, answer: any, ac
beforeAnswer = [];
}
if(typeof answer !== 'boolean') {
console.time('buat roster');
console.time('Nested 🚀');
hasComponentUsing.forEach(element => {
if(typeof answer === 'number' || typeof answer === 'string'){
beforeAnswer = (beforeAnswer === undefined) ? 0 : beforeAnswer;
Expand Down Expand Up @@ -904,7 +904,7 @@ export const saveAnswer = (dataKey: string, attributeParam: any, answer: any, ac
}
}
});
console.timeEnd('buat roster');
console.timeEnd('Nested 🚀');
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const SelectInput: FormComponentBase = props => {
} else {
url = `${config.baseUrl}`
}
console.log('urlny ', url)
console.log('Lookup URL ', url)

const [fetched] = createResource<optionSelect>(url, props.MobileOnlineSearch);
// console.log('propsss', props);
Expand Down

0 comments on commit a0deefb

Please sign in to comment.