From e9bdd79887c5c8272c3ac9d345aa10943adaf275 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Mon, 19 Sep 2022 13:43:04 +0200 Subject: [PATCH] fix content of locked ui field tooltip --- modules/ui/field.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/field.js b/modules/ui/field.js index 11cff9813..1702a2784 100644 --- a/modules/ui/field.js +++ b/modules/ui/field.js @@ -38,7 +38,7 @@ export function uiField(context, presetField, entityIDs, options) { var _locked = false; var _lockedTip = uiTooltip() - .title(() => t.append('inspector.lock.suggestion', { label: field.label })) + .title(() => t.append('inspector.lock.suggestion', { label: field.title })) .placement('bottom');