View | Details | Raw Unified | Return to bug 33066
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-3 / +1 lines)
Lines 100-107 export default { Link Here
100
            vm.before_route_entered = true // FIXME This is ugly, but we need to distinguish when it's used as main component or child component (from EHoldingsEBSCOPAckagesShow for instance)
100
            vm.before_route_entered = true // FIXME This is ugly, but we need to distinguish when it's used as main component or child component (from EHoldingsEBSCOPAckagesShow for instance)
101
            if (!vm.building_table) {
101
            if (!vm.building_table) {
102
                vm.building_table = true
102
                vm.building_table = true
103
                vm.getAgreements()
103
                vm.getAgreements().then(() => vm.initialized = true)
104
                vm.initialized = true
105
            }
104
            }
106
        })
105
        })
107
    },
106
    },
108
- 

Return to bug 33066