Skip to content

Commit

Permalink
「フォーム作成」で空行ができる問題を修正 #1836
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Nov 24, 2024
1 parent af3bcb3 commit 70aad6d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/plugin_browser_dom_parts.mts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,7 @@ export default {
if (cols.length < 2) { cols.push('') }
const key = cols[0]
const val = cols[1]
if (key === '') { continue } // 空行は無視
// key
const th = document.createElement('th')
th.innerHTML = sys.__tohtmlQ(key)
Expand Down

0 comments on commit 70aad6d

Please sign in to comment.