lint
This commit is contained in:
parent
cd5f720617
commit
3c46536bbb
|
@ -49,7 +49,7 @@ async function startApp() {
|
|||
win = new BrowserWindow({
|
||||
width: 1920,
|
||||
height: 1080,
|
||||
icon: join(__dirname, "..", "build", "icons", "512x512.png")
|
||||
icon: join(__dirname, "..", "build", "icons", "512x512.png"),
|
||||
})
|
||||
win.setTitle(APP_TITLE)
|
||||
win.loadURL(APP_URL)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script>
|
||||
import { RichText } from '@budibase/bbui'
|
||||
import { RichText } from "@budibase/bbui"
|
||||
|
||||
export let _bb
|
||||
|
||||
|
@ -16,29 +16,19 @@
|
|||
// Need to determine what options we want to expose.
|
||||
|
||||
let options = {
|
||||
"modules": {
|
||||
"toolbar": [
|
||||
modules: {
|
||||
toolbar: [
|
||||
[
|
||||
{
|
||||
"header": [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
false
|
||||
]
|
||||
}
|
||||
],
|
||||
[
|
||||
"bold",
|
||||
"italic",
|
||||
"underline",
|
||||
"strike"
|
||||
]
|
||||
]
|
||||
header: [1, 2, 3, false],
|
||||
},
|
||||
"placeholder": "Type something...",
|
||||
"theme": "snow"
|
||||
],
|
||||
["bold", "italic", "underline", "strike"],
|
||||
],
|
||||
},
|
||||
placeholder: "Type something...",
|
||||
theme: "snow",
|
||||
}
|
||||
</script>
|
||||
|
||||
<RichText bind:content {options} />
|
||||
<RichText bind:content {options} />
|
||||
|
|
Loading…
Reference in New Issue