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

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Admin/CirculationTriggers/TriggersTable.vue (-4 / +5 lines)
Lines 36-42 Link Here
36
                <th>
36
                <th>
37
                    {{ $__("Restricts checkouts") }}
37
                    {{ $__("Restricts checkouts") }}
38
                </th>
38
                </th>
39
                <th v-if="!modal">
39
                <th>
40
                    {{ $__("Actions") }}
40
                    {{ $__("Actions") }}
41
                </th>
41
                </th>
42
            </thead>
42
            </thead>
Lines 201-207 Link Here
201
                        </span>
201
                        </span>
202
                    </td>
202
                    </td>
203
203
204
                    <td v-if="!modal" class="actions">
204
                    <td class="actions">
205
                        <router-link
205
                        <router-link
206
                            :to="{
206
                            :to="{
207
                                name: 'CirculationTriggersFormEdit',
207
                                name: 'CirculationTriggersFormEdit',
Lines 210-216 Link Here
210
                                    item_type_id: rule.context.item_type_id,
210
                                    item_type_id: rule.context.item_type_id,
211
                                    patron_category_id:
211
                                    patron_category_id:
212
                                        rule.context.patron_category_id,
212
                                        rule.context.patron_category_id,
213
                                    triggerNumber,
213
                                    triggerNumber: modal
214
                                        ? i + 1
215
                                        : triggerNumber,
214
                                },
216
                                },
215
                            }"
217
                            }"
216
                            class="btn btn-default btn-xs"
218
                            class="btn btn-default btn-xs"
217
- 

Return to bug 10190