API Explorer sidebar documentation search button issue

The search button in the API Explorer just shows a unicode instead of the magnifier.

To reproduce:

  1. open the API Explorer (monday.com)
  2. enter an API key
  3. open the ‘Docs’ sidebar on the top right

On the left side of the search field, there is only the text \26b2. The Chrome Developer console shows the CSS for .graphiql-container .search-box:before.

.graphiql-container .search-box:before {
    content: '\\26b2';
    cursor: pointer;
    display: block;
    font-size: 24px;
    position: absolute;
    top: -2px;
    -webkit-transform: rotate(
-45deg
);
    -webkit-transform: rotate(
-45deg
);
    -ms-transform: rotate(-45deg);
    transform: rotate(
-45deg
);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

Removing one backslash from the content attribute shows the correct content on the page. A magnifier.

Hey Florian,

Great catch!!! I’ll pass this along to our developers to see if we can get it fixed.

Appreciate it.

Cheers,
Dipro