fix: loading status not reset when clean failed
This commit is contained in:
parent
c01be7fcca
commit
cff70bc23c
|
@ -47,14 +47,18 @@ const loadHistory = () => {
|
||||||
const cleanHistory = async () => {
|
const cleanHistory = async () => {
|
||||||
$dialog.warning(i18n.t('confirm_clean_log'), () => {
|
$dialog.warning(i18n.t('confirm_clean_log'), () => {
|
||||||
data.loading = true
|
data.loading = true
|
||||||
connectionStore.cleanCmdHistory().then((success) => {
|
connectionStore
|
||||||
if (success) {
|
.cleanCmdHistory()
|
||||||
data.history = []
|
.then((success) => {
|
||||||
|
if (success) {
|
||||||
|
data.history = []
|
||||||
|
tableRef.value?.scrollTo({ top: 0 })
|
||||||
|
$message.success(i18n.t('success'))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
data.loading = false
|
data.loading = false
|
||||||
tableRef.value?.scrollTo({ top: 0 })
|
})
|
||||||
$message.success(i18n.t('success'))
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue