Skip to content

Commit

Permalink
Merge branch 'bug_24688/beautify_node_properties_tooltips_label_badge…
Browse files Browse the repository at this point in the history
…_pr' into branches/rudder/8.0
  • Loading branch information
Jenkins CI committed Apr 12, 2024
2 parents a9fd636 + 6da3ea3 commit 459ff17
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ displayNodePropertyRow model =
Just pr ->
let
pTitle = case pr of
"inherited" -> "This property is inherited from these group(s) or global parameter: <div>" ++ (Maybe.withDefault "" p.hierarchy) ++ "</div>."
"overridden" -> "This property is overridden on this object and was inherited from these group(s) or global parameter: <div>" ++ (Maybe.withDefault "" p.hierarchy) ++ "</div>."
_ -> "This property is managed by its provider <b>" ++ pr ++ "</b>’, and can not be modified manually. Check Rudder’s settings to adjust this provider’s configuration."
"inherited" -> "<h4 class='tags-tooltip-title'>Inherited</h4> <div class='tooltip-inner-content'>This property is inherited " ++ (Maybe.withDefault "" p.hierarchy) ++ "</div>."
"overridden" -> "<h4 class='tags-tooltip-title'>Overridden</h4> <div>This property is overridden on this object and was inherited " ++ (Maybe.withDefault "" p.hierarchy) ++ "</div>."
_ -> "<h4 class='tags-tooltip-title'>" ++ pr ++ "</h4> <div class='tooltip-inner-content'>This property is managed by its provider <b>" ++ pr ++ "</b>’ and can not be modified manually. Check Rudder’s settings to adjust this provider’s configuration.</div>"
in
(span
[ class "rudder-label label-provider label-sm bs-tooltip"
Expand Down

0 comments on commit 459ff17

Please sign in to comment.