mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
Don't show "duplicate" warning when refreshing auth
This commit is contained in:
parent
8c40d3bd48
commit
f5725ca2c6
|
@ -123,7 +123,7 @@ const emitLoginResult = (value: boolean) => {
|
|||
|
||||
const urlDuplicate = computed<boolean>(() => {
|
||||
const bots = Object.values(botStore.availableBots).find((bot) => bot.botUrl === auth.value.url);
|
||||
return bots !== undefined;
|
||||
return !botEdit.value && bots !== undefined;
|
||||
});
|
||||
|
||||
const checkFormValidity = () => {
|
||||
|
|
Loading…
Reference in New Issue
Block a user