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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsList.vue (+1 lines)
Lines 153-158 export default { Link Here
153
            toolbar_options: [
153
            toolbar_options: [
154
                {
154
                {
155
                    to: "AgreementsFormAdd",
155
                    to: "AgreementsFormAdd",
156
                    icon: "plus",
156
                    button_title: this.$__("New agreement"),
157
                    button_title: this.$__("New agreement"),
157
                },
158
                },
158
            ],
159
            ],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalPackagesList.vue (+1 lines)
Lines 101-106 export default { Link Here
101
            toolbar_options: [
101
            toolbar_options: [
102
                {
102
                {
103
                    to: "EHoldingsLocalPackagesFormAdd",
103
                    to: "EHoldingsLocalPackagesFormAdd",
104
                    icon: "plus",
104
                    button_title: this.$__("New package"),
105
                    button_title: this.$__("New package"),
105
                },
106
                },
106
            ],
107
            ],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/EHoldingsLocalTitlesList.vue (+2 lines)
Lines 93-102 export default { Link Here
93
            toolbar_options: [
93
            toolbar_options: [
94
                {
94
                {
95
                    to: "EHoldingsLocalTitlesFormAdd",
95
                    to: "EHoldingsLocalTitlesFormAdd",
96
                    icon: "plus",
96
                    button_title: this.$__("New title"),
97
                    button_title: this.$__("New title"),
97
                },
98
                },
98
                {
99
                {
99
                    to: "EHoldingsLocalTitlesFormImport",
100
                    to: "EHoldingsLocalTitlesFormImport",
101
                    icon: "plus",
100
                    button_title: this.$__("Import from list"),
102
                    button_title: this.$__("Import from list"),
101
                },
103
                },
102
            ],
104
            ],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/LicensesList.vue (+1 lines)
Lines 53-58 export default { Link Here
53
            toolbar_options: [
53
            toolbar_options: [
54
                {
54
                {
55
                    to: "LicensesFormAdd",
55
                    to: "LicensesFormAdd",
56
                    icon: "plus",
56
                    button_title: this.$__("New license"),
57
                    button_title: this.$__("New license"),
57
                },
58
                },
58
            ],
59
            ],
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Toolbar.vue (-2 / +1 lines)
Lines 5-11 Link Here
5
            :key="index"
5
            :key="index"
6
            :to="{ name: option.to }"
6
            :to="{ name: option.to }"
7
            class="btn btn-default"
7
            class="btn btn-default"
8
            ><font-awesome-icon icon="plus" />
8
            ><font-awesome-icon :icon="option.icon" />
9
            {{ option.button_title }}</router-link
9
            {{ option.button_title }}</router-link
10
        >
10
        >
11
    </div>
11
    </div>
12
- 

Return to bug 34214