diff --git a/lxljs/display.js b/lxljs/display.js index 70bfcab47..554ed6c88 100644 --- a/lxljs/display.js +++ b/lxljs/display.js @@ -66,7 +66,7 @@ function tryGetValueByLang(item, propertyId, langCode, context) { throw new Error('tryGetValueByLang was called with an undefined object.'); } - if (typeof propertyId === 'string' && propertyId.startsWith('@reverse/')) { + if (typeof propertyId === 'string' && propertyId.startsWith('@reverse/') && propertyId !== '@reverse/itemOf') { return get(item, propertyId.replaceAll('/', '.')); } diff --git a/vue-client/package.json b/vue-client/package.json index dedd79dab..9790ad474 100644 --- a/vue-client/package.json +++ b/vue-client/package.json @@ -1,6 +1,6 @@ { "name": "vue-client", - "version": "1.27.4", + "version": "1.27.5", "private": true, "scripts": { "serve": "vue-cli-service serve",