File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
project/types/website/about
resources/projects/website/about Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -329,7 +329,9 @@ const aboutLinksMarkdownHandler = (aboutPage: AboutPage) => {
329329 rendered : Record < string , Element > ,
330330 doc : Document ,
331331 ) : void => {
332- const aboutLinkNodes = doc . querySelectorAll ( ".about-links .about-link" ) ;
332+ const aboutLinkNodes = doc . querySelectorAll (
333+ ".about-links .about-link .about-link-text" ,
334+ ) ;
333335 for ( const aboutLinkNode of aboutLinkNodes ) {
334336 const aboutLinkEl = aboutLinkNode as Element ;
335337 const aboutLinkRendered = rendered [ aboutLinkEl . innerText . trim ( ) ] ;
Original file line number Diff line number Diff line change 44 < a href ="<%= link.href %> " class ="about-link ">
55 < % if (link.icon) { %>
66 < i class ="bi <%= link.icon %> "> </ i >
7- < % } %> < %= link.text %>
7+ < % } %> < span class =" about-link-text " > < %= link.text %> </ span >
88 </ a >
99 < % } %>
1010</ div >
You can’t perform that action at this time.
0 commit comments