We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 257456d commit a89d527Copy full SHA for a89d527
1 file changed
src/widgets/forms/basic.ts
@@ -201,7 +201,7 @@ export function basicField (
201
if (params.pattern && !field.value.match(params.pattern)) return
202
const disabledForSave = !deferWhileFocused
203
if (disabledForSave) {
204
- field.disabled = true // See if this stops getting two dates from fumbling e.g the chrome datepicker.
+ field.disabled = true // See if this stops getting two dates from fumbling, e.g., the chrome datepicker.
205
}
206
field.setAttribute('style', inputStyle + 'color: gray;') // pending
207
const ds = kb.statementsMatching(subject, property as any) // remove any multiple values
0 commit comments