Skip to content

Commit

Permalink
fix: remove all subjects that contain "change in"
Browse files Browse the repository at this point in the history
  • Loading branch information
NikkiMeganMoore committed Oct 20, 2022
1 parent 7db0bad commit 79ca36d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified example/package/react-autoql-0.0.0-semantically-released.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion src/components/DataExplorer/DataExplorerInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default class DataExplorerInput extends React.Component {
subject.display_name.toLowerCase().endsWith('by week') ||
subject.display_name.toLowerCase().endsWith('by month') ||
subject.display_name.toLowerCase().endsWith('by year') ||
subject.display_name.toLowerCase().includes('percent change')
subject.display_name.toLowerCase().includes('change in')
)
}
fetchAllSubjects = () => {
Expand Down

0 comments on commit 79ca36d

Please sign in to comment.