Skip to content

Commit

Permalink
fix bug ajax
Browse files Browse the repository at this point in the history
  • Loading branch information
hectorarnau committed Jun 25, 2019
1 parent 2bbe901 commit bb0742f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/admin/views/attributes/R.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@
</button>
</td>

<td class="id"><a href="{{ route('editora.action', 'view_instance/?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id']) }}">{{$item['inst_id']}}</a></td>
<td class="tit"><a href="{{ route('editora.action', 'view_instance/?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id']) }}">{{$item['key_fields']}}</a></td>
<td class="id"><a href="{{ route('editora.action', 'view_instance?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id']) }}">{{$item['inst_id']}}</a></td>
<td class="tit"><a href="{{ route('editora.action', 'view_instance?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id']) }}">{{$item['key_fields']}}</a></td>
<td class="type">{{$item['class_realname']}}</td>
<td class="actions">
<ul>
<li><a onclick="reldelete('{{route('editora.action', 'delete_relation_instance/?p_relation_id='.$item['id'].'&p_class_id='.$item['parent_class_id'].'&parent_inst_id='.$instance['id'].'&p_inst_id='.$item['inst_id'].'&p_tab='.$tab['id'].'&p_rel_id='.$attribute['id'])}}')" class="btn-square clr-default"><i class="icon-unlink-rel"></i><span class="hide-txt">Desvincular</span></a></li>
<li><a href="{{ route('editora.action', 'edit_instance/?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id'])}}" class="btn-square clr-default"><i class="icon-pencil"></i><span class="hide-txt">Editar</span></a></li>
<li><a onclick="reldelete('{{route('editora.action', 'delete_relation_instance?p_relation_id='.$item['id'].'&p_class_id='.$item['parent_class_id'].'&parent_inst_id='.$instance['id'].'&p_inst_id='.$item['inst_id'].'&p_tab='.$tab['id'].'&p_rel_id='.$attribute['id'])}}')" class="btn-square clr-default"><i class="icon-unlink-rel"></i><span class="hide-txt">Desvincular</span></a></li>
<li><a href="{{ route('editora.action', 'edit_instance?p_class_id='.$item['child_class_id'].'&p_inst_id='.$item['inst_id'])}}" class="btn-square clr-default"><i class="icon-pencil"></i><span class="hide-txt">Editar</span></a></li>
</ul>
</td>
</tr>
Expand Down

0 comments on commit bb0742f

Please sign in to comment.