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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Vendors/VendorContacts.vue (-1 / +7 lines)
Lines 262-267 Link Here
262
                    </fieldset>
262
                    </fieldset>
263
                </div>
263
                </div>
264
            </div>
264
            </div>
265
            <span class="btn btn-default" @click.prevent="deleteContact(i)"
266
                ><font-awesome-icon icon="trash" />
267
                {{ $__("Delete contact") }}</span
268
            >
265
        </fieldset>
269
        </fieldset>
266
        <span class="btn btn-default" @click="addContact"
270
        <span class="btn btn-default" @click="addContact"
267
            ><font-awesome-icon icon="plus" />
271
            ><font-awesome-icon icon="plus" />
Lines 293-298 export default { Link Here
293
                claimissues: false,
297
                claimissues: false,
294
            })
298
            })
295
        },
299
        },
300
        deleteContact(i) {
301
            this.vendor.contacts.splice(i, 1)
302
        },
296
    },
303
    },
297
}
304
}
298
</script>
305
</script>
299
- 

Return to bug 38010