2
0
Fork 0

Display all inflections

This commit is contained in:
Alex Kotov 2023-03-25 03:18:29 +04:00
parent 14cccbf6c2
commit d5fc2a479f
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 3 additions and 1 deletions

View File

@ -20,8 +20,10 @@ $(function() {
var inflections = []
data['inflections'].forEach(function(item) {
var descr = item['descr']
var value = item['value'] || ''
inflections.push(
'<li><b>' + item['descr'] + '</b>: ' + item['value'] + '</li>'
'<li><b>' + descr + '</b>: ' + value + '</li>'
)
})