mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 03:25:15 +00:00
small linting fixes
This commit is contained in:
parent
b4d1c99179
commit
7c01e0e5f9
|
@ -79,7 +79,7 @@
|
|||
v-if="botStore.botCount === 1"
|
||||
class="dropdown-item"
|
||||
to="/"
|
||||
@click.native="clickLogout()"
|
||||
@click="clickLogout()"
|
||||
>Sign Out</router-link
|
||||
>
|
||||
</b-nav-item-dropdown>
|
||||
|
@ -107,7 +107,7 @@
|
|||
v-if="botStore.botCount === 1"
|
||||
class="nav-link navbar-nav"
|
||||
to="/"
|
||||
@click.native="clickLogout()"
|
||||
@click="clickLogout()"
|
||||
>Sign Out</router-link
|
||||
>
|
||||
</div>
|
||||
|
@ -189,7 +189,7 @@ const setTitle = () => {
|
|||
};
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
if (pingInterval) {
|
||||
if (pingInterval.value) {
|
||||
clearInterval(pingInterval.value);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
v-if="btFormMode !== 'visualize' && showLeftBar"
|
||||
:backtest-history="botStore.activeBot.backtestHistory"
|
||||
:selected-backtest-result-key="botStore.activeBot.selectedBacktestResultKey"
|
||||
@selectionChange="botStore.activeBot.setBacktestResultKey"
|
||||
@selection-change="botStore.activeBot.setBacktestResultKey"
|
||||
/>
|
||||
</transition>
|
||||
</div>
|
||||
|
|
|
@ -9,7 +9,12 @@
|
|||
title="Login to your bot"
|
||||
@ok="handleOk"
|
||||
>
|
||||
<login ref="loginForm" in-modal :existing-auth="loginInfo" @loginResult="handleLoginResult" />
|
||||
<login
|
||||
ref="loginForm"
|
||||
in-modal
|
||||
:existing-auth="loginInfo"
|
||||
@login-result="handleLoginResult"
|
||||
/>
|
||||
</b-modal>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Reference in New Issue
Block a user