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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/ERM/AgreementsShow.vue (-1 / +5 lines)
Lines 10-16 Link Here
10
                icon="pencil"
10
                icon="pencil"
11
                :title="$__('Edit')"
11
                :title="$__('Edit')"
12
            />
12
            />
13
            <a @click="delete_agreement(agreement.agreement_id, agreement.name)"
13
            <a
14
                @click="
15
                    delete_agreement(agreement.agreement_id, agreement.name)
16
                "
17
                class="btn btn-default"
14
                ><font-awesome-icon icon="trash" /> {{ $__("Delete") }}</a
18
                ><font-awesome-icon icon="trash" /> {{ $__("Delete") }}</a
15
            >
19
            >
16
        </Toolbar>
20
        </Toolbar>
(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue (-2 lines)
Lines 95-101 Link Here
95
                    name: 'TrainsFormEdit',
95
                    name: 'TrainsFormEdit',
96
                    params: { train_id: train.train_id },
96
                    params: { train_id: train.train_id },
97
                }"
97
                }"
98
                _class="btn btn-default"
99
                icon="pencil"
98
                icon="pencil"
100
                :title="$__('Edit')"
99
                :title="$__('Edit')"
101
            />
100
            />
102
- 

Return to bug 38854