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 110-117 export default { Link Here
110
            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)
110
            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)
111
            if (!vm.building_table) {
111
            if (!vm.building_table) {
112
                vm.building_table = true
112
                vm.building_table = true
113
                vm.getAgreementCount()
113
                vm.getAgreementCount().then(() => vm.initialized = true)
114
                vm.initialized = true
115
            }
114
            }
116
        })
115
        })
117
    },
116
    },
118
- 

Return to bug 33066