diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-10-17 01:04:13 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-10-17 01:04:13 +0200 |
commit | 85b665b343d63096a3e62c210931040a44b07a1b (patch) | |
tree | f4fbcc054f275dee2d6d3d712719cad145d0aac5 /components/Tweaks/index.tsx | |
parent | 0895967f20ef33bc0f32c99bac0a93761915b87f (diff) |
feat(algos): properly working communities
Diffstat (limited to 'components/Tweaks/index.tsx')
-rw-r--r-- | components/Tweaks/index.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/Tweaks/index.tsx b/components/Tweaks/index.tsx index 078ee99..0af25aa 100644 --- a/components/Tweaks/index.tsx +++ b/components/Tweaks/index.tsx @@ -22,6 +22,7 @@ import { initialBehavior, TagColors, colorList, + initialColoring, } from '../config' import FilterPanel from './FilterPanel' @@ -48,7 +49,7 @@ export interface TweakProps { tags: string[] tagColors: TagColors setTagColors: any - coloring: string + coloring: typeof initialColoring setColoring: any } |