diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 6cb7d415..ef80f16c 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -162,13 +162,13 @@ class Yomichan { case 'glossary-list': if (definition.glossary) { if (definition.glossary.length > 1) { - value = '
    '; + value = '
      '; for (const gloss of definition.glossary) { value += `
    1. ${gloss}
    2. `; } value += '
    '; } else { - value = `

    ${definition.glossary.join('')}

    `; + value = `

    ${definition.glossary.join('')}

    `; } } break;