Remove unused variable/method

This commit is contained in:
Matt Rider 2019-04-25 16:36:59 -03:00
parent c387760046
commit 05ad8ccc30
4 changed files with 3 additions and 8 deletions

View File

@ -19,7 +19,7 @@
<ds-flex-item width="50%" /> <ds-flex-item width="50%" />
<ds-flex-item width="20%"> <ds-flex-item width="20%">
<ds-button <ds-button
:disabled="loading || disabled" :disabled="disabled"
ghost ghost
@click.prevent="clear" @click.prevent="clear"
> >
@ -29,7 +29,6 @@
<ds-flex-item width="20%"> <ds-flex-item width="20%">
<ds-button <ds-button
type="submit" type="submit"
:loading="loading"
:disabled="disabled || errors" :disabled="disabled || errors"
primary primary
> >
@ -57,7 +56,6 @@ export default {
}, },
data() { data() {
return { return {
loading: false,
disabled: true, disabled: true,
form: { form: {
content: '' content: ''

View File

@ -415,9 +415,6 @@ export default {
this.$emit('input', content) this.$emit('input', content)
} }
}, },
update(value) {
this.editor.setContent(value)
},
showLinkMenu(attrs) { showLinkMenu(attrs) {
this.linkUrl = attrs.href this.linkUrl = attrs.href
this.linkMenuIsActive = true this.linkMenuIsActive = true

View File

@ -9,7 +9,7 @@
"hello": "Hallo" "hello": "Hallo"
}, },
"editor": { "editor": {
"placeholder": "Schreib etwas Inspirierendes" "placeholder": "Schreib etwas Inspirierendes..."
}, },
"profile": { "profile": {
"name": "Mein Profil", "name": "Mein Profil",

View File

@ -9,7 +9,7 @@
"hello": "Hello" "hello": "Hello"
}, },
"editor": { "editor": {
"placeholder": "Leave your inspirational thoughts" "placeholder": "Leave your inspirational thoughts..."
}, },
"profile": { "profile": {
"name": "My Profile", "name": "My Profile",