Forced merge: merge ai-dev into master
This commit is contained in:
commit
f3b9fde8ce
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
1
frontend/json/runtimeError.json
Normal file
1
frontend/json/runtimeError.json
Normal file
@ -0,0 +1 @@
|
||||
{}
|
||||
@ -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>
|
||||
);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user