From 4adaa4bd58bd58b7f662d356f1185661385c91a4 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Tue, 28 Jan 2025 23:18:17 +0100 Subject: [PATCH] chore(prettier): fix code style for setup.ts --- src/public/app/setup.ts | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/public/app/setup.ts b/src/public/app/setup.ts index 8e88d44e9..6bb44f2e8 100644 --- a/src/public/app/setup.ts +++ b/src/public/app/setup.ts @@ -15,9 +15,9 @@ class SetupModel { setupNewDocument: ko.Observable; setupSyncFromDesktop: ko.Observable; setupSyncFromServer: ko.Observable; - syncServerHost: ko.Observable; - syncProxy: ko.Observable; - password: ko.Observable; + syncServerHost: ko.Observable; + syncProxy: ko.Observable; + password: ko.Observable; constructor(syncInProgress: boolean) { this.syncInProgress = syncInProgress; @@ -35,7 +35,6 @@ class SetupModel { } const serverAddress = `${location.protocol}//${location.host}`; $("#current-host").html(serverAddress); - } // this is called in setup.ejs @@ -53,15 +52,14 @@ class SetupModel { } else { this.step(this.setupType()); } - }; + } back() { this.step("setup-type"); this.setupType(""); - }; + } - - async finish () { + async finish() { const syncServerHost = this.syncServerHost(); const syncProxy = this.syncProxy(); const password = this.password(); @@ -92,7 +90,7 @@ class SetupModel { } else { showAlert(`Sync setup failed: ${resp.error}`); } - }; + } } async function checkOutstandingSyncs() { @@ -121,7 +119,7 @@ function hideAlert() { } function getSyncInProgress() { - const el = document.getElementById('syncInProgress'); + const el = document.getElementById("syncInProgress"); if (!el || !(el instanceof HTMLMetaElement)) return false; return !!parseInt(el.content); } @@ -130,5 +128,3 @@ addEventListener("DOMContentLoaded", (event) => { ko.applyBindings(new SetupModel(getSyncInProgress()), document.getElementById("setup-dialog")); $("#setup-dialog").show(); }); - -