2
0
Fork 0

API changes

This commit is contained in:
Alex Kotov 2023-03-26 06:55:05 +04:00
parent d2796a3cda
commit 2a17fe7474
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 2 additions and 2 deletions

View File

@ -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(
'<li><b>' + descr + '</b>: ' + value + '</li>'
'<li><b>' + inflection_descr + '</b>: ' + value + '</li>'
)
})