Skip to content

Commit

Permalink
Fix setting href attribute for ui-onboarding-state in Android Panel (
Browse files Browse the repository at this point in the history
  • Loading branch information
smalluban authored May 23, 2024
1 parent cb5772b commit 3aac7bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ class OverviewTab extends React.Component {
</div>
)}

<ui-onboarding-state class="OverviewTab__onboardingState" ref={(el) => { if (el) { el.disabled = !setup_complete; } }} href={chrome.runtime.getURL('/app/templates/onboarding.html')}>
<ui-onboarding-state class="OverviewTab__onboardingState" ref={(el) => { if (el) { el.disabled = !setup_complete; el.href = chrome.runtime.getURL('/app/templates/onboarding.html'); } }}>
<div className="OverviewTab__GhosteryFeaturesContainer">
{this._renderGhosteryFeatures()}
</div>
Expand Down

0 comments on commit 3aac7bc

Please sign in to comment.