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 #20 from icstechsales/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
dprosper authored Mar 19, 2019
2 parents d2634ce + 8a465ff commit 3b29eb7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Binary file modified dqlexplorer.nsf
Binary file not shown.
Binary file modified dqlexplorer.ntf
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dql-explorer",
"version": "0.2.6",
"version": "0.2.7",
"author": "Dimitri Prosper <dimitri_prosper@us.ibm.com>",
"contributors": [
{
Expand Down Expand Up @@ -49,6 +49,6 @@
"not ie <= 11",
"not op_mini all"
],
"proxy": "http://myorg3.ibmcollabcloud.com",
"homepage": "http://myorg3.ibmcollabcloud.com/dqlexplorer.nsf"
"proxy": "http://domino.yourdomain.com",
"homepage": "http://domino.yourdomain.com/dqlexplorer.nsf"
}
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ Scott Good https://scott-good.github.io/

term[attribute] = newValue;

if (data.data.type === 'date') {
if ((typeof data === "object") && (data.data) && (data.data.type === 'date')) {
const date = new Date();
const dateString = date.getFullYear() + "-" + ('0' + (date.getMonth() + 1)).slice(-2) + "-" + ('0' + date.getDate()).slice(-2);
term.dateValue=date;
Expand Down
4 changes: 2 additions & 2 deletions src/components/querybuilder/ShareDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import React from 'react';
import { Dialog, DialogFooter } from 'office-ui-fabric-react/lib/Dialog';
import { PrimaryButton, DefaultButton } from 'office-ui-fabric-react/lib/Button';
import { PrimaryButton } from 'office-ui-fabric-react/lib/Button';
import { ChoiceGroup } from 'office-ui-fabric-react/lib/ChoiceGroup';

import PeoplePicker from './PeoplePicker';
Expand Down Expand Up @@ -110,4 +110,4 @@ class ShareDialog extends React.Component {
};
}

export default withApp(ShareDialog);
export default withApp(ShareDialog);

0 comments on commit 3b29eb7

Please sign in to comment.