Skip to content

Commit

Permalink
Merge pull request #275 from Availity/feature/dropdown-fix
Browse files Browse the repository at this point in the history
Remove premature call to function
  • Loading branch information
dnoler committed Aug 1, 2017
2 parents 3979ad3 + 458faa2 commit 50e7154
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/dropdown/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AvDropdownController {

const objType = typeof obj;
if (objType === 'function' || (objType === 'object' && obj !== null)) {
key = obj.$$hashKey = objType + ':' + (nextUidFn || uuid())();
key = obj.$$hashKey = objType + ':' + (nextUidFn || uuid)();
} else {
key = objType + ':' + obj;
}
Expand Down

0 comments on commit 50e7154

Please sign in to comment.