Skip to content

Commit

Permalink
Merge branch 'master' into shortened-causative-form
Browse files Browse the repository at this point in the history
  • Loading branch information
khaitruong922 authored Aug 29, 2024
2 parents a504f5b + 8509bcb commit c84fb28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ext/js/background/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ export class Backend {
let apiKey = options.anki.apiKey;
if (apiKey === '') { apiKey = null; }
this._anki.server = options.anki.server;
this._anki.enabled = options.anki.enable && enabled;
this._anki.enabled = options.anki.enable;
this._anki.apiKey = apiKey;

this._mecab.setEnabled(options.parsing.enableMecabParser && enabled);
Expand Down
6 changes: 3 additions & 3 deletions ext/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -3225,15 +3225,15 @@ <h5>or click here to upload</h5>
<td>List of definitions for the term, except the dictionary tag is omitted.</td>
</tr>
<tr>
<td><code class="anki-field-marker">{glossary}</code></td>
<td><code class="anki-field-marker">{glossary-first}</code></td>
<td>First definition for the term.</td>
</tr>
<tr>
<td><code class="anki-field-marker">{glossary-brief}</code></td>
<td><code class="anki-field-marker">{glossary-first-brief}</code></td>
<td>First definition for the term in a more compact format.</td>
</tr>
<tr>
<td><code class="anki-field-marker">{glossary-no-dictionary}</code></td>
<td><code class="anki-field-marker">{glossary-first-no-dictionary}</code></td>
<td>First definition for the term, except the dictionary tag is omitted.</td>
</tr>
<tr>
Expand Down

0 comments on commit c84fb28

Please sign in to comment.