Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies in blaze-hot #432

Merged
merged 2 commits into from Dec 22, 2023

Conversation

StorytellerCZ
Copy link
Collaborator

Update dependencies and replace two var with let.
Also add some missing semi-colons.

Update dependencies and replace two `var` with `let`. Also add some missing semi-colons.

const oldHelpers = Template.prototype.helpers;
Template.prototype.helpers = function (dict) {
if (typeof dict === 'object') {
for (var k in dict) {
for (let k in dict) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Optional: add a TODO note, that we should change this in the future to a solution that won't use for..in

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably can do this in this PR, I have fixed that in other PRs.

@StorytellerCZ StorytellerCZ changed the base branch from master to release-2.8 December 22, 2023 16:55
@StorytellerCZ StorytellerCZ added this to the 2.8 milestone Dec 22, 2023
@Grubba27 Grubba27 merged commit 41e6d09 into release-2.8 Dec 22, 2023
1 check failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants