Skip to content

Commit

Permalink
0.0.874
Browse files Browse the repository at this point in the history
  • Loading branch information
bahrus committed Dec 22, 2024
1 parent 7581814 commit 7bc04a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/assignGingerly.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export async function assignGingerly(dest, src) {
const selector = srcKey.substring(2, end);
const el = dest.querySelector(selector);
if (el) {
await assignGingerly(el, src[srcKey]);
await assignGingerly(el, src);
}
else {
//console.warn(`Element not found using selector: ${selector}`);
Expand Down
2 changes: 1 addition & 1 deletion lib/assignGingerly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export async function assignGingerly(dest: any, src: any){
const selector = srcKey.substring(2, end);
const el = dest.querySelector(selector);
if(el){
await assignGingerly(el, src[srcKey]);
await assignGingerly(el, src);
}else{
//console.warn(`Element not found using selector: ${selector}`);
}
Expand Down

0 comments on commit 7bc04a8

Please sign in to comment.