Skip to content

Commit

Permalink
Merge pull request #82 from jacobxperez/develop
Browse files Browse the repository at this point in the history
Fix template generator
  • Loading branch information
jacobxperez authored May 18, 2024
2 parents 014beb0 + fe65150 commit 96656da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.880915d0.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/rams/core/components/templateGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class TemplateGenerator {
? resolve()
: reject((err = 'Error: Source is not a String'));
})
.then(() => this._appendString(string, targetSelector))
.then(() => this.#appendString(string, targetSelector))
.then(() => {
if (typeof callback === 'function') {
callback();
Expand Down

0 comments on commit 96656da

Please sign in to comment.