Skip to content

Commit 656f8a5

Browse files
committed
feat: review changes
1 parent c1769c0 commit 656f8a5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

public/locales/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,8 @@
351351
"Graphs": {
352352
"colorsProvider": "Provider",
353353
"colorsProviderConfig": "Provider Config",
354-
"colorizedTitle": "Group by: ",
354+
"colorizedTitle": "Group by",
355+
"colorBy": "Color by",
355356
"colorsFlux": "Flux",
356357
"loadingError": "Error loading graph data",
357358
"loadingGraph": "Loading graph data...",

src/components/Graphs/useGraph.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function buildGraph(
2525
const colorKey: string =
2626
colorBy === 'source' ? n.providerType : colorBy === 'flux' ? (n.fluxName ?? 'default') : n.providerConfigName;
2727
const borderColor = colorMap[colorKey] || '#ccc';
28-
// 8% opacity for background
28+
//some opacity for background
2929
const backgroundColor = `${borderColor}08`;
3030

3131
const node: Node<NodeData> = {

0 commit comments

Comments
 (0)