Issue:
Highlighting in Gsheet_Model_Interface was broken due to new event sheets being used and available after the implementation of 020, specifically on how highlighting a row on a specific sheet requires a sheetId but we only have variable sheetName defined in model class.
Solution:
Made a new function get_sheet_id($sheetName) that converts sheetName to sheetId, and uses this to determine which sheet should be highlighted on.
Risk:
n/a
Reviewed by:
Martin, Lucas, Anubhav
Other notes:
Recommended to review changes through 'commit' view instead of 'files changed' view. This allows for a better understanding of work history, and provides context with references in title/summary blocks per commit.
Issue: Highlighting in Gsheet_Model_Interface was broken due to new event sheets being used and available after the implementation of 020, specifically on how highlighting a row on a specific sheet requires a
sheetId
but we only have variablesheetName
defined in model class.Solution: Made a new function
get_sheet_id($sheetName)
that convertssheetName
tosheetId
, and uses this to determine which sheet should be highlighted on.Risk: n/a
Reviewed by: Martin, Lucas, Anubhav
Other notes: Recommended to review changes through 'commit' view instead of 'files changed' view. This allows for a better understanding of work history, and provides context with references in title/summary blocks per commit.