Skip to content

Commit 47ac322

Browse files
committed
minor deletions
1 parent 40bf468 commit 47ac322

File tree

5 files changed

+4
-33
lines changed

5 files changed

+4
-33
lines changed

src/components/ComponentDisplay.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ Description:
2929
<div class="component-title">
3030
<p>{{ componentData.componentName }}</p>
3131
</div>
32-
<ul class="component-children">
33-
</ul>
3432
<q-menu context-menu>
3533
<q-list color='black' class="menu">
3634
<q-item clickable v-ripple v-close-popup @click="handleAddChild">
@@ -152,6 +150,7 @@ export default {
152150
153151
userImage () {
154152
const imgSrc = `file://` + this.imagePath[this.activeRoute]
153+
// console.log('imgSrc is: ', imgSrc)
155154
return imgSrc
156155
},
157156

src/components/HomeQueue.vue

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -37,21 +37,6 @@ import { mapState, mapActions } from 'vuex'
3737
import { setSelectedElementList, deleteSelectedElement, deleteFromComponentHtmlList } from '../store/types'
3838
import { breadthFirstSearch } from '../utils/search.util'
3939
40-
// const breadthFirstSearch = (array, id) => {
41-
// let queue = [...array.filter(el => typeof el === 'object')]
42-
// while (queue.length) {
43-
// let evaluated = queue.shift()
44-
// if (evaluated.id === id) {
45-
// return evaluated
46-
// } else {
47-
// if (evaluated.children.length) {
48-
// queue.push(...evaluated.children)
49-
// }
50-
// }
51-
// }
52-
// // console.log("We shouldn't be ever getting here, how did you even search an id that didn't exist?")
53-
// }
54-
5540
export default {
5641
name: 'HomeQueue',
5742
props: {

src/components/Icons.vue

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,7 @@ Description:
2424
<script>
2525
import { mapState } from 'vuex'
2626
import { breadthFirstSearch } from '../utils/search.util'
27-
// const breadthFirstSearch = (array, id) => {
28-
// let queue = [...array.filter(el => typeof el === 'object')]
29-
// while (queue.length) {
30-
// let evaluated = queue.shift()
31-
// if (evaluated.id === id) {
32-
// return evaluated
33-
// } else {
34-
// if (evaluated.children.length) {
35-
// queue.push(...evaluated.children)
36-
// }
37-
// }
38-
// }
39-
// // console.log("We shouldn't be ever getting here, how did you even search an id that didn't exist?")
40-
// }
27+
4128
export default {
4229
data () {
4330
return {

src/components/OpenProjectComponent.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ export default {
1818
name: 'OpenProjectComponent',
1919
methods: {
2020
...mapActions(['openProject']),
21+
// opens project
2122
openJSONFile (data) {
2223
const jsonFile = JSON.parse(fs.readFileSync(data[0], 'utf8'))
2324
// console.log('json file', jsonFile)
24-
// opens project
2525
this.openProject(jsonFile)
2626
},
2727
showOpenJSONDialog () {

src/components/RouteDisplay.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default {
5151
this.newRoute = ''
5252
})
5353
54-
.catch(err => err)
54+
// .catch(err => console.log(err))
5555
},
5656
resetActiveComponent () {
5757
if (this.activeComponent !== '') {

0 commit comments

Comments
 (0)