Quick hack to restore functionality. Known limitations: * A direct link to task will not highlight it * When a new task is created it will not be highlighted * Selected row will not be highlighted
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
/**
|
|
* Temporary (cross my fingers) hack to restore "active" item in table
|
|
*/
|
|
export const Events = {
|
|
DESELECT_ITEMS: 'deselect_items',
|
|
}
|
|
export const EventBus = new Vue();
|