issue-pane 2.4.9-049826ec → 2.4.9-09d093e7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/issue.js +1 -1
  2. package/package.json +1 -1
package/issue.js CHANGED
@@ -59,7 +59,7 @@ export function renderIssueCard (issue, context) {
59
59
  const card = dom.createElement('div')
60
60
  const table = card.appendChild(dom.createElement('table'))
61
61
  table.style.width = '100%'
62
- const options = { draggable: false } // Let the baord make the whole card draggable
62
+ const options = { draggable: false } // Let the board make the whole card draggable
63
63
  table.appendChild(widgets.personTR(dom, null, issue, options))
64
64
  table.subject = issue
65
65
  card.style = 'border-radius: 0.4em; border: 0.05em solid grey; margin: 0.3em;'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issue-pane",
3
- "version": "2.4.9-049826ec",
3
+ "version": "2.4.9-09d093e7",
4
4
  "description": "Solid-compatible Panes: issue editor",
5
5
  "main": "./issuePane.js",
6
6
  "scripts": {