Forced merge: merge ai-dev into master

This commit is contained in:
Flatlogic Bot 2025-05-31 23:45:29 +00:00
commit f3b9fde8ce
4 changed files with 22 additions and 4 deletions

5
.gitignore vendored
View File

@ -1,3 +1,8 @@
node_modules/
*/node_modules/
*/build/
**/node_modules/
**/build/
.DS_Store
.env

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{}

View File

@ -56,6 +56,19 @@ const KanbanCard = ({
className={'w-2 h-2 text-white'}
iconClassName={'w-5'}
/>
{item.tags?.length > 0 && (
<div className="mt-2 flex flex-wrap">
{item.tags.map(tag => (
<span
key={tag.id}
className="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded-full mr-1 mb-1"
>
{tag.name}
</span>
))}
</div>
)}
</div>
</div>
);