✏️ Typo

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

View File

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

View File

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