Skip to content

Commit

Permalink
Moved ToolBar to its own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
nwittwer committed Feb 2, 2019
1 parent bed39d6 commit 4ba25f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
const debounce = require('lodash.debounce')
export default {
name: 'Toolbar',
name: 'ToolBar',
data () {
return {
toolbarDefaultState: true
Expand Down Expand Up @@ -105,7 +105,7 @@ export default {
</script>

<style lang="scss" scoped>
@import "../scss/_variables";
@import "~@/scss/_variables";
#toolbar {
height: 44px;
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/views/MainView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="main-view">
<Toolbar ref="toolbar" />
<ToolBar ref="toolbar" />
<div id="canvasContainer">
<SidePanel />
<ArtboardControls />
Expand All @@ -15,7 +15,7 @@
</template>

<script>
import Toolbar from '../components/Toolbar.vue'
import ToolBar from '../components/ToolBar'
import Artboards from '../components/Artboards.vue'
import SidePanel from '../components/SidePanel'
import ArtboardControls from '../components/ArtboardControls.vue'
Expand All @@ -28,7 +28,7 @@ export default {
Artboards,
ArtboardControls,
SidePanel,
Toolbar
ToolBar
},
computed: {
// Bind to our Vuex Store's URL value
Expand Down

0 comments on commit 4ba25f1

Please sign in to comment.