File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -924,7 +924,7 @@ async function processReferencePage() {
924
924
925
925
let notice = '' ;
926
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 >' ;
927
+ notice = ' <span class="tx-primary" data-toggle="tooltip" data-placement="top" title="' + first_action [ 'notice' ] + '"><i data-feather="info"></i></span >' ;
928
928
}
929
929
930
930
method_table_content += '<tr id="' + iam_mapping_name_parts [ 0 ] + '_' + iam_mapping_name_parts [ 1 ] + '">\
@@ -944,14 +944,16 @@ async function processReferencePage() {
944
944
945
945
let notice = '' ;
946
946
if ( action [ 'notice' ] ) {
947
- notice = ' <p class="tx-primary" data-toggle="tooltip" data-placement="top" title="' + action [ 'notice' ] + '"><i data-feather="info"></i></p >' ;
947
+ notice = ' <span class="tx-primary" data-toggle="tooltip" data-placement="top" title="' + action [ 'notice' ] + '"><i data-feather="info"></i></span >' ;
948
948
}
949
949
950
950
method_table_content += '<tr>\
951
951
<td class="tx-medium" style="padding-left: 10px !important;"><a href="' + actionlink + '">' + action [ 'action' ] + undocumented + '</a>' + notice + '</td>\
952
952
<td class="tx-medium">' + template + '</td>\
953
953
</tr>' ;
954
954
}
955
+
956
+ feather . replace ( ) ;
955
957
}
956
958
}
957
959
$ ( '#methods-table tbody' ) . append ( method_table_content ) ;
You can’t perform that action at this time.
0 commit comments