fix: color retrieval

pull/232/head
Josh Moore 8 months ago
parent 35e2e08708
commit 16c5d959ff

@ -51,7 +51,7 @@ export function randomHexColour() { // From: https://www.geeksforgeeks.org/javas
} }
export function getResourceColor(colorValue: string, vibrantValue: string) { export function getResourceColor(colorValue: string, vibrantValue: string) {
return colorValue === '&random' ? randomHexColour() : colorValue === '&vibrant' ? vibrantValue : colorValue; return (!colorValue || colorValue === '&vibrant') ? vibrantValue : colorValue === '&random' ? randomHexColour() : colorValue;
} }
export function formatTimestamp(timestamp: number, timeoffset: string) { export function formatTimestamp(timestamp: number, timeoffset: string) {

Loading…
Cancel
Save