Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ui): typo on NLWR, it's "next to last working route" #3951

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/usage/nodes_healthcheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Starting from 8.17.0 version Network Graph shows nodes connection based on known

- **Priority route**: set by the user, it's the first route the controller tries
- **Last working route**: the last route that worked for the node
- **Next last working route**: the next route that will be tried if the last working route fails
- **Next to last working route**: the next route that will be tried if the last working route fails

By clicking on nodes a panel will open containing more detailed node information. At the bottom of this panel there is a button `DIAGNOSE` that opens a dialog that allows to perform health checks on that node.

Expand Down
4 changes: 2 additions & 2 deletions src/components/custom/ZwaveGraph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ export default {
{
icon: 'more_horiz',
textColor: '',
text: 'Next last working route',
text: 'Next to last working route',
},
{
color: '#8b0000',
Expand Down Expand Up @@ -1197,7 +1197,7 @@ export default {
RouteKind.LWR,
)

// parse node NLWR (next last working route)
// parse node NLWR (next to last working route)
this.parseRouteStats(
edges,
hubNode,
Expand Down
Loading