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