Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #15 from icstechsales/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
dprosper authored Mar 12, 2019
2 parents 4989e89 + deb42b6 commit 5a268f1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
Binary file modified dqlexplorer.nsf
Binary file not shown.
Binary file modified dqlexplorer.ntf
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dql-explorer",
"version": "0.2.4",
"version": "0.2.5",
"author": "Dimitri Prosper <[email protected]>",
"contributors": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ Scott Good https://scott-good.github.io/

onTermDateChange = (id, attribute, data) => {
if (data) {
const newValue =data.getFullYear() + "-" + ('0' + data.getMonth() + 1).slice(-2) + "-" + ('0' + data.getDate()).slice(-2);
const newValue =data.getFullYear() + "-" + ('0' + (data.getMonth() + 1)).slice(-2) + "-" + ('0' + data.getDate()).slice(-2);
let children = this.state.query.children;
let entryToUpdate = this._getObject(children, id);

Expand Down
3 changes: 2 additions & 1 deletion src/lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ export function queryToString(query, pos, formviewfolder, fvfName) {
let tempStr = _queryToString(query, pos, formviewfolder, fvfName);

if (formviewfolder === 'forms' && tempStr !== '') {
tempStr = `Form = '${fvfName}' and ${tempStr}`
// tempStr = `Form = '${fvfName}' and ${tempStr}`;
tempStr = `${tempStr}`;
} else if (formviewfolder === 'forms' && tempStr === '') {
tempStr = `Form = '${fvfName}'`
}
Expand Down

0 comments on commit 5a268f1

Please sign in to comment.