Merged in feature/PMCORE-3371 (pull request #8175)
PMCORE-3371 Approved-by: Henry Jonathan Quispe Quispe
This commit is contained in:
@@ -4,7 +4,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return {
|
return {
|
||||||
typeView: this.data.settings.view && this.data.settings.view.typeView
|
typeView: this.data.settings && this.data.settings.view && this.data.settings.view.typeView
|
||||||
? this.data.settings.view.typeView
|
? this.data.settings.view.typeView
|
||||||
: "GRID",
|
: "GRID",
|
||||||
random: 1,
|
random: 1,
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return {
|
return {
|
||||||
typeView: this.settings.view && this.settings.view.typeView
|
typeView: this.settings && this.settings.view && this.settings.view.typeView
|
||||||
? this.settings.view.typeView
|
? this.settings.view.typeView
|
||||||
: "GRID",
|
: "GRID",
|
||||||
random: 1,
|
random: 1,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return {
|
return {
|
||||||
typeView: this.settings.view && this.settings.view.typeView
|
typeView: this.settings && this.settings.view && this.settings.view.typeView
|
||||||
? this.settings.view.typeView
|
? this.settings.view.typeView
|
||||||
: "GRID",
|
: "GRID",
|
||||||
random: 1,
|
random: 1,
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return {
|
return {
|
||||||
typeView: this.settings.view && this.settings.view.typeView
|
typeView: this.settings && this.settings.view && this.settings.view.typeView
|
||||||
? this.settings.view.typeView
|
? this.settings.view.typeView
|
||||||
: "GRID",
|
: "GRID",
|
||||||
random: 1,
|
random: 1,
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
let that = this;
|
let that = this;
|
||||||
return {
|
return {
|
||||||
typeView: this.settings.view && this.settings.view.typeView
|
typeView: this.settings && this.settings.view && this.settings.view.typeView
|
||||||
? this.settings.view.typeView
|
? this.settings.view.typeView
|
||||||
: "GRID",
|
: "GRID",
|
||||||
random: 1,
|
random: 1,
|
||||||
|
|||||||
Reference in New Issue
Block a user