Skip to content

Commit cb18868

Browse files
committed
Merge branch 'dev' into dependencyUpdates
2 parents ed3c9e8 + 27c06d4 commit cb18868

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed

src/components/dashboard_items/Dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Description:
4848
import { mapState, mapActions } from "vuex";
4949
import Tree from "./Tree.vue";
5050
import ComponentDetails from "./ComponentDetails.vue";
51-
import RouteDisplay from "../home_sidebar_items/RouteDisplay.vue";
51+
import RouteDisplay from "./RouteDisplay.vue";
5252
5353
export default {
5454
components: {

src/components/home_sidebar_items/ComponentTab/ComponentTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Functionality includes: if active component is selected, will switch view to edi
1212
import CreateComponent from './CreateComponent.vue'
1313
import EditDeleteComponents from './EditDeleteComponents.vue'
1414
import { mapState } from 'vuex'
15-
import UploadImage from '../UploadImage.vue'
15+
import UploadImage from './UploadImage.vue'
1616
export default {
1717
data () {
1818
return {

src/components/home_sidebar_items/ComponentTab/CreateComponent.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Description:
4545
</template>
4646

4747
<script>
48-
import Icons from "../Icons";
49-
import ParentMultiselect from "../ParentMultiselect.vue";
48+
import Icons from "./Icons.vue";
49+
import ParentMultiselect from "./ParentMultiselect.vue";
5050
import { mapState, mapActions } from "vuex";
5151
export default {
5252
name: "HomeSidebar",

src/components/home_sidebar_items/ComponentTab/EditDeleteComponents.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Description:
142142
import { mapState, mapActions } from "vuex";
143143
import VueMultiselect from "vue-multiselect";
144144
import HTMLQueue from "../../dashboard_items/HTMLQueue.vue";
145-
import Icons from "../Icons.vue";
145+
import Icons from "./Icons.vue";
146146
import AddProps from "./AddProps.vue";
147147
import ComponentState from "./ComponentState.vue";
148148
import ComponentActions from "./ComponentActions.vue";

src/components/home_sidebar_items/UploadImage.vue renamed to src/components/home_sidebar_items/ComponentTab/UploadImage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Description:
4646

4747
<script>
4848
import { mapState, mapActions } from "vuex";
49-
import uploadImage from "../../utils/uploadImage.util";
50-
import clearImageDialog from "../../utils/clearImage.util";
49+
import uploadImage from "../../../utils/uploadImage.util";
50+
import clearImageDialog from "../../../utils/clearImage.util";
5151
5252
export default {
5353
name: "upload-image",

0 commit comments

Comments
 (0)