Skip to content

Commit 1576011

Browse files
committed
Merge branch 'branches/rudder/8.0'
2 parents 5b557f6 + 9daa3ed commit 1576011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/sources/rudder/rudder-web/src/main/elm/sources/Editor/ViewTechniqueList.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ techniqueItem model technique =
225225
, if hasUnknownMethod then
226226
span [ class "cursor-help popover-bs", attribute "data-bs-toggle" "popover", attribute "data-trigger" "hover"
227227
, attribute "data-bs-container" "body", attribute "data-bs-placement" "right", attribute "data-title" technique.name
228-
, attribute "data-bs-content" ("<div>This technique uses <b>unknown</b> generic methods: " ++ (String.join "," (List.map (\m -> m.methodName.value) unknownMethods)) ++ ".</br>These methods do not exist in the library, you must provide them or it will break at run time</div>")
228+
, attribute "data-bs-content" ("<div>This technique uses <b>unknown</b> generic methods: " ++ (String.join ", " (List.map (\m -> m.methodName.value) (List.Extra.unique unknownMethods))) ++ ".</br>These methods do not exist in the library, you must provide them or it will break at run time</div>")
229229
, attribute "data-bs-html" "true" ] [ i [ class "fa fa-warning text-warning-rudder min-size-icon unknown-gm-icon" ] [] ]
230230
else
231231
text ""

0 commit comments

Comments
 (0)