Миграция PDA на client.key

This commit is contained in:
AidarKC
2026-06-22 21:57:09 +04:00
parent ba348dafb3
commit 5c92b6a734
133 changed files with 941 additions and 30531 deletions
+2 -2
View File
@@ -43,7 +43,7 @@ export function render({ navigate }) {
</div>
<div class="key-card stack">
<label class="checkbox-row"><span class="field-label">Device Key</span></label>
<input class="input" type="text" value="${state.keyStorage.deviceKey}" />
<input class="input" type="text" value="${state.keyStorage.clientKey}" />
</div>
`;
@@ -63,7 +63,7 @@ export function render({ navigate }) {
const deviceInput = card.children[2].querySelector('.input');
deviceInput.addEventListener('input', () => {
state.keyStorage.deviceKey = deviceInput.value;
state.keyStorage.clientKey = deviceInput.value;
});
const actions = document.createElement('div');