From be23acf499bcdb530c1b8990aa3d6211323cbdb2 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Thu, 20 May 2021 19:33:08 -0400 Subject: Structured content image size units (#1692) * Add support for sizeUnits on image content * Update test data --- ext/js/language/dictionary-importer.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ext/js/language') diff --git a/ext/js/language/dictionary-importer.js b/ext/js/language/dictionary-importer.js index 4d885a74..e893ffb6 100644 --- a/ext/js/language/dictionary-importer.js +++ b/ext/js/language/dictionary-importer.js @@ -342,9 +342,10 @@ class DictionaryImporter { } async _prepareStructuredContentImage(content, context, entry) { - const {verticalAlign} = content; + const {verticalAlign, sizeUnits} = content; const result = await this._createImageData(content, context, entry, {tag: 'img'}); if (typeof verticalAlign === 'string') { result.verticalAlign = verticalAlign; } + if (typeof sizeUnits === 'string') { result.sizeUnits = sizeUnits; } return result; } -- cgit v1.2.3