@@ -106,35 +106,38 @@ templ Limits(tenant *types.Tenant, restrictions *types.TenantRestrictions, canEd
106106 <h3 >Volume Limits</h3 >
107107 <div class =" flex flex-wrap gap-1 sm:gap-2 md:gap-4" >
108108 @ shared.Input (&shared.InputProps {
109- Name : " max_volumes" ,
110- Label : " Max Volumes" ,
111- Type : " number" ,
112- Tooltip : " Maximum number of volumes allowed to be created in this team." ,
113- Disabled : !canEdit,
109+ Name : " max_volumes" ,
110+ Label : " Max Volumes" ,
111+ Type : " number" ,
112+ Tooltip : " Maximum number of volumes allowed to be created in this team." ,
113+ Description : " Volume size is in MiB" ,
114+ Disabled : !canEdit,
114115 Attrs : templ.Attributes {
115116 " x-model.number" : " form.max_volumes" ,
116117 " x-bind:min" : " 1" ,
117118 " x-bind:max" : " 100" ,
118119 },
119120 })
120121 @ shared.Input (&shared.InputProps {
121- Name : " min_volume_size" ,
122- Label : " Min Volume Size" ,
123- Type : " number" ,
124- Tooltip : " Minimum size allowed per volume in this team." ,
125- Disabled : !canEdit,
122+ Name : " min_volume_size" ,
123+ Label : " Min Volume Size" ,
124+ Type : " number" ,
125+ Tooltip : " Minimum size allowed per volume in this team." ,
126+ Description : " Volume size is in MiB" ,
127+ Disabled : !canEdit,
126128 Attrs : templ.Attributes {
127129 " x-model.number" : " form.min_volume_size" ,
128130 " x-bind:min" : " 1" ,
129131 " x-bind:max" : " 100" ,
130132 },
131133 })
132134 @ shared.Input (&shared.InputProps {
133- Name : " max_volume_size" ,
134- Label : " Max Volume Size" ,
135- Type : " number" ,
136- Tooltip : " Maximum size allowed per volume in this team." ,
137- Disabled : !canEdit,
135+ Name : " max_volume_size" ,
136+ Label : " Max Volume Size" ,
137+ Type : " number" ,
138+ Tooltip : " Maximum size allowed per volume in this team." ,
139+ Description : " Volume size is in MiB" ,
140+ Disabled : !canEdit,
138141 Attrs : templ.Attributes {
139142 " x-model.number" : " form.max_volume_size" ,
140143 " x-bind:min" : " 1" ,
0 commit comments