We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a6cf5e commit 687e96fCopy full SHA for 687e96f
src/model/model.ts
@@ -81,7 +81,7 @@ export class Model {
81
ast.value = value;
82
83
if (sec === 'r' || sec === 'p') {
84
- const tokens = value.split(', ');
+ const tokens = value.split(',').map(n => n.trim());
85
86
for (let i = 0; i < tokens.length; i++) {
87
tokens[i] = key + '_' + tokens[i];
0 commit comments