Item box: Enable autocomplete on long fields

This commit is contained in:
Abe Jellinek 2024-07-09 10:32:04 -04:00 committed by Dan Stillman
parent 38764efb5a
commit c05d43fa8e

View file

@ -1506,7 +1506,7 @@
else {
valueElement.style.textAlign = 'left';
}
if (!isLong && !fieldName.includes("creator")) {
if (!fieldName.startsWith('creator-')) {
// autocomplete for creator names is added in addCreatorRow
this.addAutocompleteToElement(valueElement);
}