Skip to content

Commit fc0bbbd

Browse files
author
Anuar Talipov
committed
Fix typo in regex_edit_dialog_container.ts. (tensorflow#6769)
## Motivation for features / changes Fix a typo `darkModeEanbled` -> `darkModeEnabled ` ## Technical description of changes Fixing a typo made in code. Although it doesn't change functionality, it keeps the code health. ## Screenshots of UI changes (or N/A) N/A ## Detailed steps to verify changes work correctly (as executed by you) N/A ## Alternate designs / implementations considered (or N/A) N/A
1 parent d21de3f commit fc0bbbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorboard/webapp/runs/views/runs_table/regex_edit_dialog_container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class RegexEditDialogContainer {
141141
colorPalette.colors[
142142
groupKeyToColorString.size % colorPalette.colors.length
143143
];
144-
colorHex = darkModeEanbled ? color.darkHex : color.lightHex;
144+
colorHex = darkModeEnabled ? color.darkHex : color.lightHex;
145145
groupKeyToColorString.set(groupId, colorHex);
146146
}
147147
colorRunPairList.push({groupId, color: colorHex, runs});

0 commit comments

Comments
 (0)