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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Preservation/TrainsShow.vue (-3 / +5 lines)
Lines 472-477 export default { Link Here
472
                                    class: "fa fa-pencil",
472
                                    class: "fa fa-pencil",
473
                                    "aria-hidden": "true",
473
                                    "aria-hidden": "true",
474
                                }),
474
                                }),
475
                                " ",
475
                                __("Edit"),
476
                                __("Edit"),
476
                            ]
477
                            ]
477
                        )
478
                        )
Lines 490-502 export default { Link Here
490
                                    class: "fa fa-trash",
491
                                    class: "fa fa-trash",
491
                                    "aria-hidden": "true",
492
                                    "aria-hidden": "true",
492
                                }),
493
                                }),
494
                                " ",
493
                                __("Remove"),
495
                                __("Remove"),
494
                            ]
496
                            ]
495
                        )
497
                        )
496
                        let buttons = [editButton, "", removeButton]
498
                        let buttons = [editButton, " ", removeButton]
497
499
498
                        if (train.received_on !== null) {
500
                        if (train.received_on !== null) {
499
                            buttons.push("")
501
                            buttons.push(" ")
500
                            buttons.push(
502
                            buttons.push(
501
                                createVNode(
503
                                createVNode(
502
                                    "a",
504
                                    "a",
Lines 512-517 export default { Link Here
512
                                            class: "fa fa-copy",
514
                                            class: "fa fa-copy",
513
                                            "aria-hidden": "true",
515
                                            "aria-hidden": "true",
514
                                        }),
516
                                        }),
517
                                        " ",
515
                                        __("Copy"),
518
                                        __("Copy"),
516
                                    ]
519
                                    ]
517
                                )
520
                                )
518
- 

Return to bug 30708