Compare commits

..

No commits in common. "6e98ca20e44b2ee269793b3a20e75f5a17e58895" and "fdb3ac15c6c719ba48621554ec89b7f973a19635" have entirely different histories.

View File

@ -117,22 +117,18 @@
</div> </div>
<div class="flex justify-end gap-2"> <div class="flex justify-end gap-2">
<button @click="closePopup" class="px-4 py-2 rounded bg-gray-400 hover:bg-gray-500 text-white transition"> <button @click="closePopup" class="px-4 py-2 rounded bg-gray-400 hover:bg-gray-500 text-white transition">
{{ isAdmin ? 'Batal' : 'Tutup' }} {{ isAdmin ? 'Batal' : 'Tutup' }}
</button> </button>
<button @click="showDeleteConfirm = true"
<!-- Tombol Hapus hanya muncul kalau Admin --> class="px-4 py-2 rounded bg-red-500 text-white hover:bg-red-600 transition flex items-center">
<button v-if="isAdmin" @click="showDeleteConfirm = true" <i class="fas fa-trash mr-2"></i>Hapus
class="px-4 py-2 rounded bg-red-500 text-white hover:bg-red-600 transition flex items-center"> </button>
<i class="fas fa-trash mr-2"></i>Hapus <button v-if="isAdmin" @click="saveMove" :disabled="!selectedTrayId" class="px-4 py-2 rounded transition"
</button> :class="selectedTrayId ? 'bg-C hover:bg-C/80 text-D' : 'bg-gray-400 cursor-not-allowed'">
Simpan
<button v-if="isAdmin" @click="saveMove" :disabled="!selectedTrayId" class="px-4 py-2 rounded transition" </button>
:class="selectedTrayId ? 'bg-C hover:bg-C/80 text-D' : 'bg-gray-400 cursor-not-allowed'">
Simpan
</button>
</div> </div>
</div> </div>
</div> </div>