From 3e7a8c4e6aae6a8e4e489612694f6eda856d7eaf Mon Sep 17 00:00:00 2001 From: Emil Zhai Date: Tue, 25 Nov 2025 14:55:16 +0800 Subject: [PATCH] feat: change default tab to logs for better performance --- Access_Core.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Access_Core.php b/Access_Core.php index 2b6fced..c6c629f 100644 --- a/Access_Core.php +++ b/Access_Core.php @@ -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(); }