From 8e200a9cb485df698fe8ac30f13025fcab0f3281 Mon Sep 17 00:00:00 2001
From: jeremystretch <jstretch@ns1.com>
Date: Tue, 28 Jun 2022 16:24:56 -0400
Subject: [PATCH] #9403: Add labels to device VC fields

---
 netbox/dcim/forms/models.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/netbox/dcim/forms/models.py b/netbox/dcim/forms/models.py
index 2c905cc5c..043af751d 100644
--- a/netbox/dcim/forms/models.py
+++ b/netbox/dcim/forms/models.py
@@ -527,10 +527,12 @@ class DeviceForm(TenancyForm, NetBoxModelForm):
     )
     vc_position = forms.IntegerField(
         required=False,
+        label='Position',
         help_text="The position in the virtual chassis this device is identified by"
     )
     vc_priority = forms.IntegerField(
         required=False,
+        label='Priority',
         help_text="The priority of the device in the virtual chassis"
     )