fixes: Showing vue warning in the console (#4152)
* fixes: Showing vue warn with PR#4100 * Minor fixes
This commit is contained in:
parent
3c3b6f90c7
commit
619441ce1c
1 changed files with 2 additions and 2 deletions
|
@ -217,10 +217,10 @@ export default {
|
||||||
return this.data.sender || {};
|
return this.data.sender || {};
|
||||||
},
|
},
|
||||||
storySender() {
|
storySender() {
|
||||||
return this.contentAttributes.story_sender || {};
|
return this.contentAttributes.story_sender || null;
|
||||||
},
|
},
|
||||||
storyId() {
|
storyId() {
|
||||||
return this.contentAttributes.story_id || {};
|
return this.contentAttributes.story_id || null;
|
||||||
},
|
},
|
||||||
contentType() {
|
contentType() {
|
||||||
const {
|
const {
|
||||||
|
|
Loading…
Reference in a new issue