mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FIX: Server side rendering was broken with new helperContext()
This commit is contained in:
@@ -36,4 +36,4 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{plugin-outlet name="discovery-below"}}
|
{{plugin-outlet name="discovery-below"}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|||||||
@@ -16,6 +16,13 @@ define("I18n", ["exports"], function(exports) {
|
|||||||
exports.default = I18n;
|
exports.default = I18n;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Formatting doesn't currently need any helper context
|
||||||
|
define("discourse-common/lib/helpers", ["exports"], function(exports) {
|
||||||
|
exports.helperContext = function() {
|
||||||
|
return {};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
__utils = require("discourse/lib/utilities");
|
__utils = require("discourse/lib/utilities");
|
||||||
|
|
||||||
__emojiUnicodeReplacer = null;
|
__emojiUnicodeReplacer = null;
|
||||||
|
|||||||
Reference in New Issue
Block a user