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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (-1 / +8 lines)
Lines 129-135 export default { Link Here
129
                },
129
                },
130
                actions: {
130
                actions: {
131
                    0: ["show"],
131
                    0: ["show"],
132
                    "-1": ["edit", "delete"],
132
                    "-1": [
133
                        { action: "edit", title: "Edit", icon: "fa fa-pencil" },
134
                        {
135
                            action: "delete",
136
                            title: "Delete",
137
                            icon: "fa fa-trash",
138
                        },
139
                    ],
133
                },
140
                },
134
                default_filters: {
141
                default_filters: {
135
                    "user_roles.user_id": function () {
142
                    "user_roles.user_id": function () {
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (-1 / +8 lines)
Lines 95-101 export default { Link Here
95
                },
95
                },
96
                actions: {
96
                actions: {
97
                    0: ["show"],
97
                    0: ["show"],
98
                    "-1": ["edit", "delete"],
98
                    "-1": [
99
                        { action: "edit", title: "Edit", icon: "fa fa-pencil" },
100
                        {
101
                            action: "delete",
102
                            title: "Delete",
103
                            icon: "fa fa-trash",
104
                        },
105
                    ],
99
                },
106
                },
100
            },
107
            },
101
        }
108
        }
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (-1 / +8 lines)
Lines 86-92 export default { Link Here
86
                },
86
                },
87
                actions: {
87
                actions: {
88
                    0: ["show"],
88
                    0: ["show"],
89
                    "-1": ["edit", "delete"],
89
                    "-1": [
90
                        { action: "edit", title: "Edit", icon: "fa fa-pencil" },
91
                        {
92
                            action: "delete",
93
                            title: "Delete",
94
                            icon: "fa fa-trash",
95
                        },
96
                    ],
90
                },
97
                },
91
            },
98
            },
92
            cannot_search: false,
99
            cannot_search: false,
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (-2 / +8 lines)
Lines 68-74 export default { Link Here
68
                },
68
                },
69
                actions: {
69
                actions: {
70
                    0: ["show"],
70
                    0: ["show"],
71
                    "-1": ["edit", "delete"],
71
                    "-1": [
72
                        { action: "edit", title: "Edit", icon: "fa fa-pencil" },
73
                        {
74
                            action: "delete",
75
                            title: "Delete",
76
                            icon: "fa fa-trash",
77
                        },
78
                    ],
72
                },
79
                },
73
            },
80
            },
74
        }
81
        }
75
- 

Return to bug 33529