File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -922,10 +922,15 @@ async function processReferencePage() {
922
922
undocumented = ' <span class="badge badge-danger">undocumented</span>' ;
923
923
}
924
924
925
+ let notice = '' ;
926
+ if ( first_action [ 'notice' ] ) {
927
+ notice = ' <p class="tx-primary" data-toggle="tooltip" data-placement="top" title="' + action [ 'notice' ] + '"><i data-feather="info"></i></p>' ;
928
+ }
929
+
925
930
method_table_content += '<tr id="' + iam_mapping_name_parts [ 0 ] + '_' + iam_mapping_name_parts [ 1 ] + '">\
926
931
<td rowspan="' + rowspan + '" class="tx-medium"><span class="tx-color-03">' + iam_mapping_name_parts [ 0 ] + '.</span>' + iam_mapping_name_parts [ 1 ] + '</td>\
927
932
<td rowspan="' + rowspan + '" class="tx-normal">' + shortDocs ( iam_mapping_name , docs ) + '</td>\
928
- <td class="tx-medium"><a href="' + actionlink + '">' + first_action [ 'action' ] + undocumented + '</a></td>\
933
+ <td class="tx-medium"><a href="' + actionlink + '">' + first_action [ 'action' ] + undocumented + '</a>' + notice + ' </td>\
929
934
<td class="tx-medium">' + template + '</td>\
930
935
</tr>' ;
931
936
You can’t perform that action at this time.
0 commit comments