✏️ Typo

This commit is contained in:
Liyas Thomas
2020-01-21 22:46:29 +05:30
parent 40e05a0461
commit 43d95a2271
2 changed files with 16 additions and 3 deletions

View File

@@ -257,5 +257,6 @@ export default {
sync: "Sync",
syncHistory: "History",
syncCollections: "Collections",
turn_on: "Turn on"
turn_on: "Turn on",
login_first: "Login first"
};

View File

@@ -848,11 +848,23 @@
</div>
<input id="sync-tab" type="radio" name="side" />
<label for="sync-tab">{{ $t("sync") }}</label>
<div class="tab" v-if="fb.currentUser">
<pw-section class="pink" label="Auth" ref="auth">
<div class="tab">
<pw-section
v-if="fb.currentUser"
class="pink"
label="Sync"
ref="sync"
>
<inputform />
<ballsfeed />
</pw-section>
<pw-section v-else>
<ul>
<li>
<label>{{ $t("login_first") }}</label>
</li>
</ul>
</pw-section>
</div>
</section>
</aside>