diff --git a/README.md b/README.md index 8808a8a..fb8438c 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ Select your options for the topology view:
Show logical connections between interfaces (referred to as Interface Connections in NetBox) in the topology view. Where the path between interfaces includes multiple cables (e.g., via patch panels), only the end interface connections are shown, not the intermediate front / rear port connections, etc. This is similar to what was referred to as 'end-to-end' connections in previous versions. These connections are displayed as yellow dotted lines.
-
Show redundant Cable and Locigal Connection
+
Show redundant Cable and Logical Connection
Shows a logical connection (in addition to a cable), even if a cable is directly connected. Leaving this option disabled prevents that redundant display. This option only has an effect if 'Show Logical Connections' is activated.
Show Neighbors
Adds neighbors to the filter result set automatically. Link peers will be added if 'Show Cables' is ticked, far-end terminations will be added if 'Show Logical Connections' is ticked.
diff --git a/netbox_topology_views/forms.py b/netbox_topology_views/forms.py index af1ab06..0eec1c1 100644 --- a/netbox_topology_views/forms.py +++ b/netbox_topology_views/forms.py @@ -126,7 +126,7 @@ class DeviceFilterForm(TenancyFilterForm, NetBoxModelFilterSetForm): label =_("Show Logical Connections"), required=False, initial=False ) show_single_cable_logical_conns = forms.BooleanField( - label =_("Show redundant Cable and Locigal Connection"), required=False, initial=False + label =_("Show redundant Cable and Logical Connection"), required=False, initial=False ) show_neighbors = forms.BooleanField( label =_("Show Neighbors"), required=False, initial=False @@ -212,7 +212,7 @@ class IndividualOptionsForm(NetBoxModelForm): "are displayed as yellow dotted lines.") ) show_single_cable_logical_conns = forms.BooleanField( - label = ("Show redundant Cable and Locigal Connection"), + label = ("Show redundant Cable and Logical Connection"), required = False, initial=False, help_text=_("Shows a logical connection (in addition to a cable), " @@ -263,4 +263,4 @@ class IndividualOptionsForm(NetBoxModelForm): fields = [ 'user_id', 'ignore_cable_type', 'preselected_device_roles', 'preselected_tags', 'show_unconnected', 'show_cables', 'show_logical_connections', 'show_single_cable_logical_conns', 'show_neighbors', 'show_circuit', 'show_power', 'show_wireless', 'draw_default_layout' ] - \ No newline at end of file +