Skip to content

Commit 38bb7b6

Browse files
committed
removed old references
1 parent 6d37b15 commit 38bb7b6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
/node_modules
88
.eslintrc.js
99
babel.config.js
10-
/src/components/ComponentDisplay.vue
10+
/src/components/Canvas.vue

src/components/right-sidebar/RoutesTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Includes functionality to:
3030
</template>
3131
</q-input>
3232
<Routes></Routes>
33-
<UploadImage></UploadImage>
33+
<UploadMockup></UploadMockup>
3434
</div>
3535

3636
</template>

src/pages/Index2.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
Description:
3-
Displays componentDisplay
3+
Displays Canvas
44
Functionality includes: N/A
55
-->
66

src/store/actions.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import * as types from "./types";
33

44
const actions = {
5-
// Actions that primarily affect componentDisplay.vue //////
5+
// Actions that primarily affect Canvas.vue //////
66
[types.deleteActiveComponent]: ({ state, commit }) => {
77
if (state.noteModalOpen === true){
88
return;
@@ -130,7 +130,7 @@ const actions = {
130130
state.pastedComponent
131131
);
132132
},
133-
// End of componentDisplay Section//////////////////////////////////
133+
// End of Canvas Section//////////////////////////////////
134134

135135
// Actions that affect Routing //////////////////////////////////////
136136

@@ -323,7 +323,7 @@ const actions = {
323323
/*
324324
[types.updateStartingPosition]: ({ commit }, payload) => {
325325
// does the same as update component position
326-
// but needed to record the initial spot of the ."draggable-resizeable" in componentDisplay.vue
326+
// but needed to record the initial spot of the ."draggable-resizeable" in Canvas.vue
327327
// or else undo/redo won't work
328328
commit(types.UPDATE_COMPONENT_POSITION, payload)
329329
},

0 commit comments

Comments
 (0)