mirror of
https://github.com/whyour/qinglong.git
synced 2026-08-13 20:30:48 +08:00
重构前端错误提示
This commit is contained in:
@@ -36,11 +36,12 @@ const SubscriptionLogModal = ({
|
||||
? logUrl
|
||||
: `${config.apiPrefix}subscriptions/${subscription.id}/log`,
|
||||
)
|
||||
.then((data: any) => {
|
||||
.then(({ code, data }) => {
|
||||
if (
|
||||
code === 200 &&
|
||||
localStorage.getItem('logSubscription') === String(subscription.id)
|
||||
) {
|
||||
const log = data.data as string;
|
||||
const log = data as string;
|
||||
setValue(log || '暂无日志');
|
||||
setExecuting(log && !log.includes('执行结束'));
|
||||
if (log && !log.includes('执行结束')) {
|
||||
|
||||
Reference in New Issue
Block a user