Commit ce4877e2 authored by Mike Greiling's avatar Mike Greiling

fix Vue warnings for missing element

parent 7039d523
...@@ -78,7 +78,7 @@ $(() => { ...@@ -78,7 +78,7 @@ $(() => {
}); });
gl.IssueBoardsSearch = new Vue({ gl.IssueBoardsSearch = new Vue({
el: '#js-boards-search', el: document.getElementById('js-boards-search'),
data: { data: {
filters: Store.state.filters filters: Store.state.filters
}, },
...@@ -89,7 +89,7 @@ $(() => { ...@@ -89,7 +89,7 @@ $(() => {
gl.IssueBoardsModalAddBtn = new Vue({ gl.IssueBoardsModalAddBtn = new Vue({
mixins: [gl.issueBoards.ModalMixins], mixins: [gl.issueBoards.ModalMixins],
el: '#js-add-issues-btn', el: document.getElementById('js-add-issues-btn'),
data: { data: {
modal: ModalStore.store, modal: ModalStore.store,
store: Store.state, store: Store.state,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment