terrier-engine 4.58.3 → 4.58.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/terrier/forms.ts +1 -1
package/package.json
CHANGED
package/terrier/forms.ts
CHANGED
|
@@ -248,7 +248,7 @@ class CompoundFieldBuilder<T extends Record<string, unknown>, K extends keyof T
|
|
|
248
248
|
}
|
|
249
249
|
|
|
250
250
|
label(text: string, ...classes: string[]): this {
|
|
251
|
-
this.
|
|
251
|
+
this.formFields.labelFor(this.field, this.key, text, ...classes)
|
|
252
252
|
return this
|
|
253
253
|
}
|
|
254
254
|
|