260326:1347 Fixing Refactor ADR-019 Naming convention uuid #01
CI / CD Pipeline / build (push) Failing after 17m29s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
admin
2026-03-26 13:47:07 +07:00
parent 978d66e49e
commit 1aff83214f
34 changed files with 217 additions and 222 deletions
@@ -63,7 +63,7 @@ export function CirculationList({ data }: CirculationListProps) {
header: 'Organization',
cell: ({ row }) => {
const org = row.original.organization;
return org?.organization_name || '-';
return org?.organizationName || '-';
},
},
{
@@ -30,7 +30,7 @@ function RoutingStep({ routing }: { routing: CirculationRouting }) {
const meta = ROUTING_STATUS_META[routing.status] ?? ROUTING_STATUS_META.PENDING;
const Icon = meta.icon;
const assigneeName = routing.assignee
? `${routing.assignee.first_name ?? ''} ${routing.assignee.last_name ?? ''}`.trim() ||
? `${routing.assignee.firstName ?? ''} ${routing.assignee.lastName ?? ''}`.trim() ||
routing.assignee.username
: '—';
@@ -74,16 +74,16 @@ export function TagManager({ uuid, canEdit }: TagManagerProps) {
key={tag.id}
className="inline-flex items-center gap-1 px-2 py-0.5 rounded-full text-xs font-medium border"
style={{
backgroundColor: `${getTagColor(tag.color_code)}22`,
borderColor: `${getTagColor(tag.color_code)}66`,
color: getTagColor(tag.color_code) === '#e2e8f0' ? 'inherit' : getTagColor(tag.color_code),
backgroundColor: `${getTagColor(tag.colorCode)}22`,
borderColor: `${getTagColor(tag.colorCode)}66`,
color: getTagColor(tag.colorCode) === '#e2e8f0' ? 'inherit' : getTagColor(tag.colorCode),
}}
>
<span
className="w-1.5 h-1.5 rounded-full shrink-0"
style={{ backgroundColor: getTagColor(tag.color_code) }}
style={{ backgroundColor: getTagColor(tag.colorCode) }}
/>
{tag.tag_name}
{tag.tagName}
{canEdit && (
<button
onClick={() => handleRemove(tag.id)}
@@ -117,9 +117,9 @@ export function TagManager({ uuid, canEdit }: TagManagerProps) {
>
<span
className="w-2 h-2 rounded-full shrink-0"
style={{ backgroundColor: getTagColor(tag.color_code) }}
style={{ backgroundColor: getTagColor(tag.colorCode) }}
/>
{tag.tag_name}
{tag.tagName}
</button>
))
)}