File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -738,13 +738,13 @@ module.exports = function(eleventyConfig) {
738738 if ( ! showCloud && ! showSelfHosted ) return '' ;
739739 let html = `<div class="ff-tier-badges">` ;
740740 if ( showCloud ) {
741- html += `<div class="ff-tier-badge ff-tier--available">` ;
741+ html += `<div class="ff-tier-badge ff-tier--available ff-tooltip" data-tooltip="Available on FlowFuse Cloud — ${ cloudLabel } ">` ;
742742 html += `<span class="ff-tier-badge__label">Cloud</span>` ;
743743 html += `<span class="ff-tier-badge__value">${ cloudLabel } </span>` ;
744744 html += `</div>` ;
745745 }
746746 if ( showSelfHosted ) {
747- html += `<div class="ff-tier-badge ff-tier--available">` ;
747+ html += `<div class="ff-tier-badge ff-tier--available ff-tooltip" data-tooltip="Available on FlowFuse Self-Hosted — ${ selfHostedLabel } ">` ;
748748 html += `<span class="ff-tier-badge__label">Self-Hosted</span>` ;
749749 html += `<span class="ff-tier-badge__value">${ selfHostedLabel } </span>` ;
750750 html += `</div>` ;
Original file line number Diff line number Diff line change 33{% if showTierCloud or showTierSelfHosted %}
44<div class =" ff-tier-badges" >
55 {% if showTierCloud %}
6- <div class =" ff-tier-badge ff-tier--available" >
6+ <div class =" ff-tier-badge ff-tier--available ff-tooltip " data-tooltip = " Available on FlowFuse Cloud — {{ tierCloud }} " >
77 <span class =" ff-tier-badge__label" >Cloud</span >
88 <span class =" ff-tier-badge__value" >{{ tierCloud }} </span >
99 </div >
1010 {% endif %}
1111 {% if showTierSelfHosted %}
12- <div class =" ff-tier-badge ff-tier--available" >
12+ <div class =" ff-tier-badge ff-tier--available ff-tooltip " data-tooltip = " Available on FlowFuse Self-Hosted — {{ tierSelfHosted }} " >
1313 <span class =" ff-tier-badge__label" >Self-Hosted</span >
1414 <span class =" ff-tier-badge__value" >{{ tierSelfHosted }} </span >
1515 </div >
You can’t perform that action at this time.
0 commit comments