Skip to content

Commit 1c645c9

Browse files
committed
Change default field for script list
1 parent 6cb5eb7 commit 1c645c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox_script_manager/tables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ScriptInstanceTable(NetBoxTable):
1818
class Meta(NetBoxTable.Meta):
1919
model = ScriptInstance
2020
fields = ("pk", "id", "name", "group", "weight", "description", "module_path", "class_name", "created", "last_updated", "tags")
21-
default_columns = ("name", "group", "description", "module_path", "class_name", "tags")
21+
default_columns = ("group", "name", "description", "tags")
2222

2323

2424
class ScriptExecutionTable(NetBoxTable):

0 commit comments

Comments
 (0)