File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 77/node_modules
88.eslintrc.js
99babel.config.js
10- /src /components /ComponentDisplay .vue
10+ /src /components /Canvas .vue
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff line change 11 <!--
22Description:
3- Displays componentDisplay
3+ Displays Canvas
44 Functionality includes: N/A
55 -->
66
Original file line number Diff line number Diff line change 22import * as types from "./types" ;
33
44const 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 },
You can’t perform that action at this time.
0 commit comments