mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-02 23:08:49 +01:00
🎨 Remove the limit on the retention period for history Fix https://github.com/siyuan-note/siyuan/issues/8472
This commit is contained in:
parent
dd69fa26a7
commit
34e47ce514
2 changed files with 2 additions and 2 deletions
|
|
@ -210,7 +210,7 @@ export const editor = {
|
|||
<div class="b3-label__text">${window.siyuan.languages.historyRetentionDaysTip}</div>
|
||||
</div>
|
||||
<span class="fn__space"></span>
|
||||
<input class="b3-text-field fn__flex-center fn__size200" id="historyRetentionDays" type="number" min="0" max="120" value="${window.siyuan.config.editor.historyRetentionDays}"/>
|
||||
<input class="b3-text-field fn__flex-center fn__size200" id="historyRetentionDays" type="number" min="0" value="${window.siyuan.config.editor.historyRetentionDays}"/>
|
||||
</label>
|
||||
<label class="fn__flex b3-label config__item">
|
||||
<div class="fn__flex-1">
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ export const initEditor = () => {
|
|||
${window.siyuan.languages.historyRetentionDays}
|
||||
<a href="javascript:void(0)" id="clearHistory">${window.siyuan.languages.clearHistory}</a>
|
||||
<span class="fn__hr"></span>
|
||||
<input class="b3-text-field fn__block" id="historyRetentionDays" type="number" min="0" max="120" value="${window.siyuan.config.editor.historyRetentionDays}"/>
|
||||
<input class="b3-text-field fn__block" id="historyRetentionDays" type="number" min="0" value="${window.siyuan.config.editor.historyRetentionDays}"/>
|
||||
<div class="b3-label__text">${window.siyuan.languages.historyRetentionDaysTip}</div>
|
||||
</label>
|
||||
<label class="b3-label fn__displayblock">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue