diff --git a/app/assets/v2/js/grants/detail.js b/app/assets/v2/js/grants/detail.js index a496e105f0c..6beed21d4d3 100644 --- a/app/assets/v2/js/grants/detail.js +++ b/app/assets/v2/js/grants/detail.js @@ -184,3 +184,9 @@ const copyDuplicateDetails = () => { }); }); }; + +$(document).ready(() => { + $('#grant-profile-tabs button').click(function() { + document.location = $(this).attr('href'); + }); +});