This commit is contained in:
Philip Cheung 2024-10-28 10:07:54 +08:00
parent 85b30b4765
commit 3b39a2a2e5
3 changed files with 5 additions and 5 deletions

View File

@ -91,8 +91,8 @@ async def delete_organ(
"""
organ = session.get(Organ, id)
if not organ:
raise HTTPException(status_code=404, detail="aboutUs not found")
raise HTTPException(status_code=404, detail="Organ not found")
await del_picture(organ.image)
session.delete(organ)
session.commit()
return Message(message="aboutUs deleted successfully")
return Message(message="Organ deleted successfully")

View File

@ -86,7 +86,7 @@ const Delete = ({ type, id, isOpen, onClose }: DeleteProps) => {
} else if (type === "AboutUs") {
key = "aboutUs"
} else if(type === "Organ"){
key = "organs"
key = "organ"
} else if (type === "Course") {
key = "courses"
} else if (type === "Image") {

View File

@ -117,7 +117,7 @@ function OrganTable() {
{organ.index}
</Td>
<Td>
<ActionsMenu type={"AboutUs"} value={organ} />
<ActionsMenu type={"Organ"} value={organ} />
</Td>
</Tr>
))}
@ -152,7 +152,7 @@ function Organ() {
Electric organ Management
</Heading>
<Navbar type={"AboutUs"} addModalAs={AddOrgan} />
<Navbar type={"Organ"} addModalAs={AddOrgan} />
<OrganTable />