Link not working as desired with URL contains path "/advertising/"

Hi,

Link myLink = new Link("some page", new ExternalResource("http://example.com/advertising/some?foo=bar")); run this code, the anchor element will be 0px * 0px. (see attached image.)
What am I doing wrong?

21812.png

I have noiced “display: none” in runtime css on anchor element.
to avoid this problem. apply “display: inline !important;” in custom theme.

.v-link a {
  display: inline !important;
}