Skip to content
This repository was archived by the owner on Oct 30, 2023. It is now read-only.

Commit 8f3bbd1

Browse files
author
Faizan Saiyed
committed
Removed consoles
1 parent ad30caa commit 8f3bbd1

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

client/src/components/SchemaView.vue

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ export default {
920920
$skip: this.skip,
921921
$limit: this.limit
922922
}).then(queryresp => {
923-
console.log('queryresp: ', queryresp)
923+
// console.log('queryresp: ', queryresp)
924924
// this.entriesTotal = queryresp.data.data.length
925925
this.isFlowzLoaded = true
926926
this.dataTotal = queryresp.data.total
@@ -996,10 +996,8 @@ export default {
996996
feathers: {
997997
'finstance': {
998998
created (data) {
999-
console.log('Data: ', data)
1000999
},
10011000
updated (data) {
1002-
console.log('Schema view Data: ', data)
10031001
if (this.$store.state.role === 1) {
10041002
if (data.currentStatus === this.$route.params.stateid) {
10051003
// // data = data.data
@@ -1025,22 +1023,22 @@ export default {
10251023
// })
10261024
// }, 2000)
10271025
// console.log('Length: ', this.instanceEntries.length)
1028-
console.log('instanceEntries: ', this.instanceEntries.length, this.entriesTotal)
1026+
// console.log('instanceEntries: ', this.instanceEntries.length, this.entriesTotal)
10291027
if (this.instanceEntries.length < this.entriesTotal) {
1030-
console.log('Ready to push: ', this.instanceEntries.length)
1028+
// console.log('Ready to push: ', this.instanceEntries.length)
10311029
// push to table
10321030
let instanceObj = data
10331031
// console.log('instanceObj: ', instanceObj)
10341032
let lastEntryId = data.stageReference[data.stageReference.length - 1].stageRecordId
1035-
console.log('lastEntryId: ', lastEntryId)
1033+
// console.log('lastEntryId: ', lastEntryId)
10361034
if (lastEntryId !== undefined) {
10371035
flowzdataModal.get(lastEntryId).then(res => {
1038-
console.log('Response fdata: ', res)
1036+
// console.log('Response fdata: ', res)
10391037
instanceObj['data'] = res.data.data
10401038
instanceObj['iid'] = data.id
10411039
this.instanceEntries.push(instanceObj)
10421040
this.dataData.push(instanceObj)
1043-
console.log('Pushed data: ', this.instanceEntries, this.dataData)
1041+
// console.log('Pushed data: ', this.instanceEntries, this.dataData)
10441042
})
10451043
}
10461044
} else {

0 commit comments

Comments
 (0)