We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7512477 commit 32cbcbcCopy full SHA for 32cbcbc
src/library.js
@@ -150,7 +150,7 @@ export const tableFormatter = rows => {
150
export const textFormatter = (text, innerHtml = false) => {
151
return () => {
152
if (innerHtml) {
153
- return h('div', { innerHtml: text })
+ return h('div', { innerHTML: text })
154
}
155
156
return h('div', text)
tests/unit/vue-command-query.spec.js
@@ -12,9 +12,9 @@ import {
12
13
// Mock
14
class ResizeObserver {
15
- observe() { }
16
- unobserve() { }
17
- disconnect() { }
+ observe () { }
+ unobserve () { }
+ disconnect () { }
18
19
20
window.ResizeObserver = ResizeObserver
0 commit comments