Skip to content

Commit 4e74a57

Browse files
authored
Modify updateDesignerArea to allow processing without records
Commented out the early return statement in updateDesignerArea function.
1 parent e00522b commit 4e74a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

QSL_card_designer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ <h2>QSL Card Designer (QSLカードデザイナー)</h2>
408408
const area = document.getElementById('designerArea');
409409
// Remove all .field divs
410410
Array.from(area.querySelectorAll('.field')).forEach(f=>f.remove());
411-
if (!adifRecords.length) return;
411+
// if (!adifRecords.length) return;
412412
const rec = adifRecords[qsoIdx] || {};
413413
// add fields
414414
designerFields.forEach((f, i)=>{

0 commit comments

Comments
 (0)