From 073f1705e587b84621f7d3bc3a5e7a2c3c2b67f2 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Thu, 29 Dec 2022 17:17:55 +0400 Subject: [PATCH] Up PropertySelect option --- src/style_manager/model/PropertySelect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style_manager/model/PropertySelect.js b/src/style_manager/model/PropertySelect.js index a1ac1d600..69995368e 100644 --- a/src/style_manager/model/PropertySelect.js +++ b/src/style_manager/model/PropertySelect.js @@ -84,7 +84,7 @@ export default class PropertySelect extends Property { const option = (isString(id) ? this.getOption(id) : id) || {}; const optId = this.getOptionId(option); const label = option.label || option.name || optId; - const propId = this.getId(); + const propId = opts.property || this.getId(); return (locale && this.em?.t(`styleManager.options.${propId}.${optId}`)) || label; }