合并gitlink修改的相关代码-(文件夹、文件名字含有特殊字符)

This commit is contained in:
caishi 2022-05-25 17:26:05 +08:00
parent b396f08176
commit 4a659beda1
1 changed files with 2 additions and 2 deletions

View File

@ -273,9 +273,9 @@ class NewHeader extends Component {
str = match.path; str = match.path;
} }
if (url && (str === url || (str === url+'/'))) { if (url && (str === url || (str === url+'/'))) {
return true return true;
}else { }else {
return false return false;
} }
} }