Skip to content

Commit

Permalink
fix: fix function name typo (#150)
Browse files Browse the repository at this point in the history
* fix: fn name typo
  • Loading branch information
janhenrikoverland authored and martinkrulltott committed Nov 19, 2019
1 parent c24e382 commit 53c7967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export {
getAvailableAxes,
getDisallowedDims,
getMaxNumberOfItemsPerAxis,
hasTooManyItemPerAxis,
hasTooManyItemsPerAxis,
} from './modules/layoutUiRules'

// Visualizations
Expand Down
2 changes: 1 addition & 1 deletion src/modules/layoutUiRules/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const getMaxNumberOfItemsPerAxis = (visType, axisName) => {
}

// returns: boolean
export const hasTooManyItemPerAxis = (visType, axisName, numberOfItems) => {
export const hasTooManyItemsPerAxis = (visType, axisName, numberOfItems) => {
const maxNumberOfItemsPerAxis = getMaxNumberOfItemsPerAxis(
visType,
axisName
Expand Down

0 comments on commit 53c7967

Please sign in to comment.