fix: make custom search select handle undefined options (#1094)
* fix: make search select handle undefined options * fix: kanban y-scroll
This commit is contained in:
parent
012486df11
commit
9ccc35d181
14 changed files with 179 additions and 180 deletions
|
|
@ -89,7 +89,7 @@ export const cosineSimilarity = (a: string, b: string) => {
|
|||
};
|
||||
|
||||
export const generateRandomColor = (string: string): string => {
|
||||
if (!string) return "var(--color-accent)";
|
||||
if (!string) return "rgb(var(--color-accent))";
|
||||
|
||||
string = `${string}`;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue