Skip to content

Commit

Permalink
Prettier spacing to please the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfraser committed Aug 19, 2024
1 parent d5d750b commit 6f5581b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/color.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ export function getTitleAttr(bucket: IBucket, e: IEvent) {

export function getCategoryColorFromEvent(bucket: IBucket, e: IEvent) {
if (bucket.type == 'currentwindow') {
return getCategoryColorFromString(e.data.app + " " + e.data.title);
return getCategoryColorFromString(e.data.app + ' ' + e.data.title);
} else if (bucket.type == 'web.tab.current') {
return getCategoryColorFromString(e.data.title + " " + e.data.url);
return getCategoryColorFromString(e.data.title + ' ' + e.data.url);
} else if (bucket.type == 'afkstatus') {
return getColorFromString(e.data.status);
} else if (bucket.type?.startsWith('app.editor')) {
Expand Down

1 comment on commit 6f5581b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.12.3b18 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.12.3b18 (click to expand)

Please sign in to comment.