Skip to content

Commit

Permalink
Merge pull request #282 from peteeckel/fix/view-table-default-view
Browse files Browse the repository at this point in the history
Made default_view a boolean column in the view table
  • Loading branch information
peteeckel authored Jun 2, 2024
2 parents 849fb32 + 3c656a5 commit 37f3d9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox_dns/tables/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class ViewTable(TenancyColumnsMixin, NetBoxTable):
name = tables.Column(
linkify=True,
)
default_view = tables.Column(
default_view = tables.BooleanColumn(
verbose_name="Default View",
)
tags = TagColumn(url_name="plugins:netbox_dns:view_list")
Expand Down

0 comments on commit 37f3d9e

Please sign in to comment.