From 2a17fe74742f73e26116e80d53e6e83e02116e1d Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 26 Mar 2023 06:55:05 +0400 Subject: [PATCH] API changes --- bundle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle.js b/bundle.js index 58137f4..145a627 100644 --- a/bundle.js +++ b/bundle.js @@ -124,7 +124,7 @@ window.leqsikoni = { var items_html = [] inflections.forEach(function(inflection) { - var descr = inflection['descr'] + var inflection_descr = inflection['inflection_descr'] var value = inflection['value'] || '' var other_word_id = inflection['other_word_id'] @@ -134,7 +134,7 @@ window.leqsikoni = { } items_html.push( - '
  • ' + descr + ': ' + value + '
  • ' + '
  • ' + inflection_descr + ': ' + value + '
  • ' ) })