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
@@ -37,7 +37,7 @@ export default function TagsPage() {
accessorKey: 'tag_name',
header: 'Tag Name',
cell: ({ row }) => {
const color = String(row.original.color_code || 'default');
const color = String(row.original.colorCode || 'default');
const isHex = color.startsWith('#');
return (
<div className="flex items-center gap-2">
@@ -45,7 +45,7 @@ export default function TagsPage() {
className="w-3 h-3 rounded-full border border-border"
style={{ backgroundColor: isHex ? color : color === 'default' ? '#e2e8f0' : color }}
/>
{String(row.original.tag_name)}
{String(row.original.tagName)}
</div>
);
},
@@ -97,13 +97,13 @@ export default function TagsPage() {
required: false,
},
{
name: 'tag_name',
name: 'tagName',
label: 'Tag Name',
type: 'text',
required: true,
},
{
name: 'color_code',
name: 'colorCode',
label: 'Color Code (Hex or Name)',
type: 'text',
required: false,