Skip to content

Commit

Permalink
fix: change rules to None not null
Browse files Browse the repository at this point in the history
  • Loading branch information
0xbrayo committed Jun 18, 2024
1 parent 9fd6513 commit cdfee31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/util/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const defaultCategories: Category[] = [
{ name: ['Work', '3D'], rule: { type: 'regex', regex: 'Blender' } },
{
name: ['Media'],
rule: { type: null },
rule: { type: 'none' },
data: { color: '#F33' },
},
{
Expand Down Expand Up @@ -84,7 +84,7 @@ export const defaultCategories: Category[] = [
},
{
name: ['Comms'],
rule: { type: null },
rule: { type: 'none' },
data: { color: '#9FF' },
},
{
Expand Down

1 comment on commit cdfee31

@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.