Lines 30-36
Link Here
|
30 |
<th> |
30 |
<th> |
31 |
{{ $__("Restricts checkouts") }} |
31 |
{{ $__("Restricts checkouts") }} |
32 |
</th> |
32 |
</th> |
33 |
<th v-if="!modal"> |
33 |
<th> |
34 |
{{ $__("Actions") }} |
34 |
{{ $__("Actions") }} |
35 |
</th> |
35 |
</th> |
36 |
</thead> |
36 |
</thead> |
Lines 155-161
Link Here
|
155 |
</span> |
155 |
</span> |
156 |
</td> |
156 |
</td> |
157 |
|
157 |
|
158 |
<td v-if="!modal" class="actions"> |
158 |
<td class="actions"> |
159 |
<router-link |
159 |
<router-link |
160 |
:to="{ |
160 |
:to="{ |
161 |
name: 'CirculationTriggersFormEdit', |
161 |
name: 'CirculationTriggersFormEdit', |
Lines 164-170
Link Here
|
164 |
item_type_id: rule.context.item_type_id, |
164 |
item_type_id: rule.context.item_type_id, |
165 |
patron_category_id: |
165 |
patron_category_id: |
166 |
rule.context.patron_category_id, |
166 |
rule.context.patron_category_id, |
167 |
triggerNumber, |
167 |
triggerNumber: modal ? i + 1 : triggerNumber, |
168 |
}, |
168 |
}, |
169 |
}" |
169 |
}" |
170 |
class="btn btn-default btn-xs" |
170 |
class="btn btn-default btn-xs" |
171 |
- |
|
|