From 6be028b9dc00d986ba3dc9a38f3813932d988a2b Mon Sep 17 00:00:00 2001 From: mattieserver <3049868+mattieserver@users.noreply.github.com> Date: Fri, 15 Apr 2022 19:42:32 +0200 Subject: [PATCH] fix typo (#100) --- netbox_topology_views/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox_topology_views/__init__.py b/netbox_topology_views/__init__.py index a033c10..1ab27c6 100644 --- a/netbox_topology_views/__init__.py +++ b/netbox_topology_views/__init__.py @@ -12,7 +12,7 @@ class TopologyViewsConfig(PluginConfig): default_settings = { 'preselected_device_roles': ['Firewall', 'Router', 'Distribution Switch', 'Core Switch', 'Internal Switch', 'Access Switch', 'Server', 'Storage', 'Backup', 'Wireless AP'], 'ignore_cable_type': ['power outlet','power port'], - 'device_img': ['access-switch', 'core-switch', 'firewall', 'router', 'distribution-switch', 'backup', 'storage,wan-network', 'wireless-ap', 'server', 'internal-switch', 'isp-cpe-material', 'non-racked-devices', 'power-units'], + 'device_img': ['access-switch', 'core-switch', 'firewall', 'router', 'distribution-switch', 'backup', 'storage', 'wan-network', 'wireless-ap', 'server', 'internal-switch', 'isp-cpe-material', 'non-racked-devices', 'power-units'], 'allow_coordinates_saving': False, 'preselected_tags' : [], 'enable_circuit_terminations': False,