Skip to content

Commit

Permalink
Step 16.7: Add as a dependency to PartyDetails
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela authored and DAB0mB committed Dec 14, 2016
1 parent 0d1cf56 commit 0276792
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion imports/ui/components/partyDetails/partyDetails.js
Expand Up @@ -7,6 +7,7 @@ import { Meteor } from 'meteor/meteor';
import template from './partyDetails.html';
import { Parties } from '../../../api/parties';
import { name as PartyUninvited } from '../partyUninvited/partyUninvited';
import { name as PartyMap } from '../partyMap/partyMap';

class PartyDetails {
constructor($stateParams, $scope, $reactive) {
Expand Down Expand Up @@ -74,7 +75,8 @@ const name = 'partyDetails';
export default angular.module(name, [
angularMeteor,
uiRouter,
PartyUninvited
PartyUninvited,
PartyMap
]).component(name, {
template,
controllerAs: name,
Expand Down

0 comments on commit 0276792

Please sign in to comment.