mirror of
https://github.com/whyour/qinglong.git
synced 2026-07-16 17:09:20 +08:00
修复添加ck,初始化目录缺失
This commit is contained in:
@@ -114,7 +114,9 @@ const Config = () => {
|
||||
const match = record.value.match(/pt_pin=([^; ]+)(?=;?)/);
|
||||
const val = (match && match[1]) || '未匹配用户名';
|
||||
return (
|
||||
<span style={{ cursor: 'text' }}>{decodeURIComponent(val)}</span>
|
||||
<span style={{ cursor: 'text' }}>
|
||||
{decodeURIComponent(unescape(val))}
|
||||
</span>
|
||||
);
|
||||
},
|
||||
},
|
||||
@@ -226,7 +228,7 @@ const Config = () => {
|
||||
|
||||
useEffect(() => {
|
||||
if (value && loading) {
|
||||
asyncUpdateStatus();
|
||||
// asyncUpdateStatus();
|
||||
}
|
||||
}, [value]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user