Skip to content

Commit

Permalink
fixes lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vardhan0604 committed Jun 26, 2024
1 parent 4077cbb commit 9876a2f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
15 changes: 6 additions & 9 deletions Parse-Dashboard/parse-dashboard-config.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
"apps": [
{
"apps": [
{
"serverURL": "http://localhost:1337/parse",
"appId": "hello",
"masterKey": "world",
"appName": "",
"iconName": "",
"primaryBackgroundColor": "",
"secondaryBackgroundColor": ""
"appId": "1234",
"masterKey": "12345",
"appName": "MyApp"
}
],
"iconsFolder": "icons"
]
}
1 change: 0 additions & 1 deletion src/components/Filter/Filter.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ const Filter = ({
schema,
filters,
Allclasses,
AllclassesSchema,
renderRow,
onChange,
onSearch,
Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/Data/Browser/ObjectPickerDialog.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export default class ObjectPickerDialog extends React.Component {
}
const className = this.props.className;
const source = this.state.relation || className;
let query =await queryFromFilters(source, this.state.filters);
let query = await queryFromFilters(source, this.state.filters);
if (this.state.ordering !== '-createdAt') {
// Construct complex pagination query
const equalityQuery = await queryFromFilters(source, this.state.filters);
Expand Down

0 comments on commit 9876a2f

Please sign in to comment.