fix: allow empty line in config type preperties

This commit is contained in:
wfnuser 2020-04-27 22:11:50 +08:00 committed by Asa
parent 6c495c045c
commit 986b543afd

View File

@ -53,6 +53,7 @@ export default {
return str
.replace('\n\r', '\n')
.split('\n')
.filter(_str => _str)
.every(_str => reg.test(_str.trim()));
},