bugs fixed

This commit is contained in:
Dani Herrero 2017-06-28 14:59:54 +02:00
parent 5b5523e6b6
commit 5e2be42247
3 changed files with 4 additions and 4 deletions

View File

@ -29,7 +29,7 @@
</vn-horizontal> </vn-horizontal>
<vn-horizontal vn-one margin-large-bottom> <vn-horizontal vn-one margin-large-bottom>
<vn-one> <vn-one>
<vn-production-actions tickets="$ctrl.tickets" states="$ctrl.states"></vn-production-actions> <vn-production-actions tickets="$ctrl.tickets" states="$ctrl.states" hour-items="$ctrl.hourItems"></vn-production-actions>
</vn-one> </vn-one>
<vn-two></vn-two> <vn-two></vn-two>
</vn-horizontal> </vn-horizontal>

View File

@ -107,7 +107,8 @@ ngModule.component('vnProductionActions', {
template: require('./production-actions.html'), template: require('./production-actions.html'),
bindings: { bindings: {
tickets: '<', tickets: '<',
states: '<' states: '<',
hourItems: '<'
}, },
controller: ProductionActions controller: ProductionActions
}); });

View File

@ -39,8 +39,7 @@ ngModule.component('vnProductionTable', {
template: require('./production-table.html'), template: require('./production-table.html'),
bindings: { bindings: {
tickets: '=', tickets: '=',
footer: '<', footer: '<'
selected: '='
}, },
controller: ProductionTable controller: ProductionTable
}); });