Skip to content

Commit

Permalink
Merge pull request #155 from awest25/5-19_branch
Browse files Browse the repository at this point in the history
added data back into line 322 and line 332
  • Loading branch information
jerryshi042003 authored May 19, 2024
2 parents a8aa2b4 + 397b058 commit d8a62bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/services/taggerButtonData.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ export const getTaggerButtonData = (updateActiveRow, addNewRow, setCurrentPage)
'ServerSideTiebreak': [
{
label: 'NearSide',
action: () => {
action: (data) => {
updateActiveRow('pointScore', serverScore + '-' + returnerScore);
updateActiveRow('gameScore', data.table[data.activeRowIndex - 1]['gameScore']);
updateActiveRow('setScore', data.table[data.activeRowIndex - 1]['setScore']);
Expand All @@ -329,7 +329,7 @@ export const getTaggerButtonData = (updateActiveRow, addNewRow, setCurrentPage)
},
{
label: 'FarSide',
action: () => {
action: (data) => {
updateActiveRow('serverName', data.table[data.activeRowIndex - 1]['serverName']);
updateActiveRow('pointScore', serverScore + '-' + returnerScore);
updateActiveRow('gameScore', data.table[data.activeRowIndex - 1]['gameScore']);
Expand Down

0 comments on commit d8a62bb

Please sign in to comment.