Add outdated warning
This commit is contained in:
parent
cad0648cbe
commit
b059609670
@ -171,6 +171,10 @@ class SettingsDictionaryEntryUI {
|
||||
this.priorityInput = this.content.querySelector('.dict-priority');
|
||||
this.deleteButton = this.content.querySelector('.dict-delete-button');
|
||||
|
||||
if (this.dictionaryInfo.version < 3) {
|
||||
this.content.querySelector('.dict-outdated').hidden = false;
|
||||
}
|
||||
|
||||
this.content.querySelector('.dict-title').textContent = this.dictionaryInfo.title;
|
||||
this.content.querySelector('.dict-revision').textContent = `rev.${this.dictionaryInfo.revision}`;
|
||||
|
||||
|
@ -492,7 +492,7 @@
|
||||
|
||||
<template id="dict-template"><div class="dict-group well well-sm">
|
||||
<h4><span class="text-muted glyphicon glyphicon-book"></span> <span class="dict-title"></span> <small class="dict-revision"></small></h4>
|
||||
<p class="text-warning" hidden>This dictionary is outdated and may not support new extension features; please import the latest version.</p>
|
||||
<p class="text-warning dict-outdated" hidden>This dictionary is outdated and may not support new extension features; please import the latest version.</p>
|
||||
|
||||
<div class="checkbox">
|
||||
<label><input type="checkbox" class="dict-enabled"> Enable search</label>
|
||||
|
Loading…
Reference in New Issue
Block a user