mirror of
https://github.com/unraid/api.git
synced 2026-04-24 00:01:39 -05:00
fix(web): sign out ux hide api error
This commit is contained in:
@@ -48,7 +48,6 @@ const {
|
||||
refreshServerStateStatus,
|
||||
username,
|
||||
} = storeToRefs(serverStore);
|
||||
|
||||
/**
|
||||
* Post sign in success state:
|
||||
* If we're on the Connect settings page in the webGUI
|
||||
@@ -145,6 +144,12 @@ const accountActionStatusCopy = computed((): { text: string; } => {
|
||||
return {
|
||||
text: props.t('Ready to update Connect account configuration'),
|
||||
};
|
||||
case 'waiting':
|
||||
return {
|
||||
text: accountAction.value?.type === 'signIn'
|
||||
? props.t('Signing In')
|
||||
: props.t('Signing Out'),
|
||||
};
|
||||
case 'updating':
|
||||
return {
|
||||
text: accountAction.value?.type === 'signIn'
|
||||
|
||||
Reference in New Issue
Block a user