updatePick: (state, new_attributes) => {
    const found_pick = state.picks[new_attributes.id] || {};
    // Merge the new attributes into the old, and update the pick
    let combined_pick = Object.assign({}, found_pick, new_attributes);
    Vue.set(state.picks, new_attributes.id, combined_pick);