Skip to content

Commit 8d26c6a

Browse files
authored
fix missing id property (#194)
1 parent e7cc3b2 commit 8d26c6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/safedns/output.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func (z ZoneCollection) Fields() []*output.OrderedFields {
3030
type RecordCollection []safedns.Record
3131

3232
func (r RecordCollection) DefaultColumns() []string {
33-
return []string{"name", "name", "type", "content", "updated_at", "priority", "ttl"}
33+
return []string{"id", "name", "type", "content", "updated_at", "priority", "ttl"}
3434
}
3535

3636
func (r RecordCollection) Fields() []*output.OrderedFields {

0 commit comments

Comments
 (0)