feat: change default tab to logs for better performance

This commit is contained in:
Emil Zhai
2025-11-25 14:55:16 +08:00
parent 3993806db0
commit 3e7a8c4e6a

View File

@@ -43,15 +43,14 @@ class Access_Core
$this->action = 'migration';
$this->title = _t('数据迁移');
break;
case 'logs':
$this->action = 'logs';
$this->title = _t('访问日志');
break;
case 'overview':
default:
$this->action = 'overview';
$this->title = _t('访问概览');
break;
default:
$this->action = 'logs';
$this->title = _t('访问日志');
break;
}
$this->hasMigration = (new Access_Migration($this->request))->exists();
}