Merge pull request #12912 from dashevchenko/edqsEntityTitleFix

Fixed missed "title" entity field subscription
This commit is contained in:
Viacheslav Klimov 2025-03-13 15:31:11 +02:00 committed by GitHub
commit 461645006b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,6 +148,7 @@ public interface EntityFields {
default String getAsString(String key) { default String getAsString(String key) {
return switch (key) { return switch (key) {
case "createdTime" -> Long.toString(getCreatedTime()); case "createdTime" -> Long.toString(getCreatedTime());
case "title" -> getName();
case "type" -> getType(); case "type" -> getType();
case "label" -> getLabel(); case "label" -> getLabel();
case "additionalInfo" -> getAdditionalInfo(); case "additionalInfo" -> getAdditionalInfo();