mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
fix empty interpolation
This commit is contained in:
@@ -652,7 +652,7 @@ Spacebars.compile = function (inputString) {
|
||||
return 'function () { return ' + parts.join('+') +
|
||||
'; }';
|
||||
} else {
|
||||
return parts.join('+');
|
||||
return parts.length ? parts.join('+') : '""';
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user