Skip to content

Commit

Permalink
adds stroke to the reservation #11900
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi1693 committed May 5, 2023
1 parent a29a07e commit b0ec942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/dcim/svg/racks.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def draw_margin(self):
link = Hyperlink(href=f'{self.base_url}{reservation.get_absolute_url()}', target='_parent')
link.set_desc(f'Reservation #{reservation.pk}: {reservation.description}')
link.add(
Rect(coords, size, class_='reservation')
Rect(coords, size, class_='reservation', stroke='red', stroke_width=2)
)
self.drawing.add(link)

Expand Down

0 comments on commit b0ec942

Please sign in to comment.