Skip to content

Commit 2625855

Browse files
committed
Changed HomeQueue file to HTMLQueue file and changed all references
Co-authored-by: Terry Tilley [email protected]
1 parent 6313636 commit 2625855

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/components/ComponentDetails.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
5151

5252
<script>
5353
import { mapState } from 'vuex'
54-
import HomeQueue from './HomeQueue'
54+
import HTMLQueue from './HTMLQueue'
5555
import CodeSnippet from './CodeSnippet'
5656
5757
export default {
5858
name: 'ComponentDetails',
5959
components: {
60-
HomeQueue,
60+
HTMLQueue,
6161
CodeSnippet
6262
},
6363
computed: {

src/components/HTMLQueue.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { setSelectedElementList, deleteSelectedElement, deleteFromComponentHtmlL
3838
import { breadthFirstSearch } from '../utils/search.util'
3939
4040
export default {
41-
name: 'HomeQueue',
41+
name: 'HTML Queue',
4242
props: {
4343
name: {
4444
type: String
@@ -105,7 +105,7 @@ export default {
105105
},
106106
watch: {
107107
activeComponent: function () {
108-
// console.log('watching activeComponent in HomeQueue')
108+
// console.log('watching activeComponent in HTMLQueue')
109109
if (this.activeComponent !== '') {
110110
this.component = true
111111
} else {

src/store/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ const actions = {
163163
// Actions dispatched from left hand panel////////////////////////////////////////
164164

165165
[types.addToComponentElementList]: ({ commit }, payload) => {
166-
// adds element to the homeQueue
166+
// adds element to the HTMLQueue
167167
commit(types.ADD_TO_COMPONENT_HTML_LIST, payload)
168168
},
169169

src/store/mutations.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ const mutations = {
257257
state.componentMap[componentName].htmlList = htmlList
258258
},
259259

260-
// deletes a element html tag from HomeQueue
260+
// deletes a element html tag from HTMLQueue
261261
[types.DELETE_SELECTED_ELEMENT]: (state, payload) => {
262262
state.selectedElementList.splice(payload, 1)
263263
},

0 commit comments

Comments
 (0)