Commit 9173cbf6 authored by Nick Thomas's avatar Nick Thomas

CE->EE: Fix a component broken by the Vue update

parent 1187d432
......@@ -46,8 +46,13 @@ import './board_new_form';
currentPage() {
return this.state.currentPage;
},
reload() {
return this.state.reload;
reload: {
get() {
return this.state.reload;
},
set(newValue) {
this.state.reload = newValue;
},
},
board() {
return this.state.currentBoard;
......
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