Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
lyove authored Jan 9, 2024
1 parent 0b1744e commit c1af7c4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions resources/js/pages/Projects/Collection/CollectionDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,12 @@
</div>

<div class="flex justify-between space-x-1">
<a @click="openNewFieldModal(field.type, true, field)" class="inline-block text-white text-sm rounded-md bg-indigo-500 px-2 cursor-pointer hover:bg-indigo-600 whitespace-nowrap"><i class="fa fa-edit text-xs"></i> Edit</a>
<a @click="deleteField(field)" class="inline-block text-white text-sm rounded-md bg-red-500 px-3 cursor-pointer hover:bg-red-600 whitespace-nowrap"><i class="fa fa-trash-alt text-xs"></i> Delete</a>
<a @click="openNewFieldModal(field.type, true, field)" class="inline-block text-white text-sm rounded-md bg-indigo-500 px-3 cursor-pointer hover:bg-indigo-600 whitespace-nowrap">
<i class="fa fa-edit text-xs"></i>
</a>
<a @click="deleteField(field)" class="inline-block text-white text-sm rounded-md bg-red-500 px-3 cursor-pointer hover:bg-red-600 whitespace-nowrap">
<i class="fa fa-trash-alt text-xs"></i>
</a>
</div>
</div>
</div>
Expand Down

0 comments on commit c1af7c4

Please sign in to comment.