Skip to content

Commit

Permalink
Formatting suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Steffen Zschaler <[email protected]>
  • Loading branch information
barnettwilliam and szschaler authored Apr 8, 2024
1 parent 55cd5e9 commit 603acd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/src/EducationPlatformApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,10 @@ class EducationPlatformApp {

if(action.source.buttons){
//Buttons defined by activity
buttonConfig= action.source.buttons.find( btn => btn.id == sourceButton );
buttonConfig = action.source.buttons.find (btn => btn.id == sourceButton);
} else {
//Buttons defined by tool
buttonConfig= action.source.ref.buttons.find( btn => btn.id == sourceButton );
buttonConfig = action.source.ref.buttons.find (btn => btn.id == sourceButton);
}

// Create map containing panel values
Expand Down

0 comments on commit 603acd3

Please sign in to comment.