Fixes
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
40df1018e4
commit
b998ed200c
|
@ -17,7 +17,7 @@ class Controller extends Component {
|
|||
|
||||
return !hasAclProperty || (hasAclProperty && this.aclService.hasAny([option.acl]));
|
||||
});
|
||||
this.$scope.moreButton.data = options;
|
||||
this.$.moreButton.data = options;
|
||||
}
|
||||
|
||||
onMoreChange(callback) {
|
||||
|
@ -89,8 +89,6 @@ class Controller extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
Controller.$inject = ['$element', '$scope'];
|
||||
|
||||
ngModule.component('vnInvoiceOutDescriptor', {
|
||||
template: require('./index.html'),
|
||||
bindings: {
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<vn-crud-model
|
||||
vn-id="model"
|
||||
url="Orders/CatalogFilter"
|
||||
params="{orderFk: $ctrl.$state.params.id}"
|
||||
params="{orderFk: $ctrl.$params.id}"
|
||||
limit="50"
|
||||
data="$ctrl.items">
|
||||
</vn-crud-model>
|
||||
|
|
|
@ -52,7 +52,7 @@ class Controller extends Component {
|
|||
}
|
||||
|
||||
showDeleteOrderDialog() {
|
||||
this.$scope.deleteOrderConfirmation.show();
|
||||
this.$.deleteOrderConfirmation.show();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -32,7 +32,7 @@ export default class Controller extends Section {
|
|||
clone(event, zone) {
|
||||
this.stopEvent(event);
|
||||
this.selectedZone = zone;
|
||||
this.$scope.clone.show();
|
||||
this.$.clone.show();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -58,7 +58,7 @@ export default class Controller extends Section {
|
|||
preview(event, zone) {
|
||||
this.stopEvent(event);
|
||||
this.selectedZone = zone;
|
||||
this.$scope.summary.show();
|
||||
this.$.summary.show();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue