add dropdown municipio list on form create and update

This commit is contained in:
Wikzyy
2025-03-14 13:59:49 +07:00
parent 16b2e5a16d
commit 03e33bc937
4 changed files with 154 additions and 31 deletions

View File

@ -125,13 +125,13 @@ const ManagePostoAdmsContextProvider = ({ children }: { children: React.ReactNod
<>
<button
className="btn btn-sm btn-icon btn-clear btn-light"
onClick={() => handleEditDialog(true, row.id)}
onClick={() => handleEditDialog(true, row.posto_adms_id)}
>
<KeenIcon icon="notepad-edit" />
</button>
<button
className="btn btn-sm btn-icon btn-clear btn-light"
onClick={() => handleDeleteDialog(true, row.id)}
onClick={() => handleDeleteDialog(true, row.posto_adms_id)}
>
<KeenIcon icon="trash" />
</button>