Merged in feature/PMCORE-3371 (pull request #8175)

PMCORE-3371

Approved-by: Henry Jonathan Quispe Quispe
This commit is contained in:
Rodrigo Quelca
2021-09-24 19:59:05 +00:00
committed by Julio Cesar Laura Avendaño
5 changed files with 5 additions and 5 deletions

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,

View File

@@ -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,