Fix: Refactor Organization CRUD {id} to {code}

This commit is contained in:
hasyim_kai
2025-11-11 14:07:46 +07:00
parent 3f63f195d0
commit 270869b928
52 changed files with 211 additions and 216 deletions

No files matched your search

@@ -33,7 +33,7 @@ const canRead = true
<template>
<template v-if="canRead">
<ContentDivisionDetail :division-id="Number(route.params.id)" />
<ContentDivisionDetail :division-id="String(route.params.id)" />
</template>
<Error
v-else
@@ -33,7 +33,7 @@ const canRead = true
<template>
<template v-if="canRead">
<ContentInstallationDetail :installation-id="Number(route.params.id)" />
<ContentInstallationDetail :installation-id="String(route.params.id)" />
</template>
<Error
v-else
@@ -33,7 +33,7 @@ const canRead = true
<template>
<template v-if="canRead">
<ContentSpecialistDetail :specialist-id="Number(route.params.id)" />
<ContentSpecialistDetail :specialist-id="String(route.params.id)" />
</template>
<Error
v-else
@@ -33,7 +33,7 @@ const canRead = true
<template>
<template v-if="canRead">
<ContentSubspecialistDetail :subspecialist-id="Number(route.params.id)" />
<ContentSubspecialistDetail :subspecialist-id="String(route.params.id)" />
</template>
<Error
v-else
@@ -33,7 +33,7 @@ const canRead = true
<template>
<template v-if="canRead">
<ContentUnitDetail :unit-id="Number(route.params.id)" />
<ContentUnitDetail :unit-id="String(route.params.id)" />
</template>
<Error
v-else