Skip to content

Commit

Permalink
fix(ui/ux): fixed error message display for real this time (last fix …
Browse files Browse the repository at this point in the history
…was broken)
  • Loading branch information
EricLambrecht committed Sep 1, 2018
1 parent aab5a25 commit 6a5001d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/components/ErrorMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default {
border: 2px solid var(--color-danger);
border-radius: 2px;
padding: 5px 10px;
margin: 20px 0;
max-width: var(--grid-max-width);
margin: 20px auto;
}
</style>
4 changes: 1 addition & 3 deletions src/components/MainWindow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@
</template>

<script>
import { createNamespacedHelpers, mapGetters } from 'vuex';
import { mapGetters, mapState } from 'vuex';
import EditorPlaylist from './EditorPlaylist.vue';
import ErrorMessage from './ErrorMessage.vue';
import StartTimeSettings from './StartTimeSettings.vue';
import MainWindowHeader from './MainWindowHeader.vue';
import EditorOperationPanel from './EditorOperationPanel.vue';
const { mapState } = createNamespacedHelpers('editor');
export default {
name: 'MainWindow',
components: {
Expand Down

0 comments on commit 6a5001d

Please sign in to comment.