2023-04-22 07:35:07 -04:00
|
|
|
<div class="search_bar">
|
|
|
|
<input
|
|
|
|
type="search"
|
|
|
|
name="search-box"
|
|
|
|
value="{{this.pageQuery}}"
|
|
|
|
placeholder="Type to search"
|
|
|
|
/>
|
2023-07-31 20:53:55 -04:00
|
|
|
<button type="submit" onclick="searchWeb()">search</button>
|
2023-08-09 21:32:47 -04:00
|
|
|
<div class="error_box">
|
|
|
|
<button onclick="toggleErrorBox()" class="error_box_dropdown">
|
|
|
|
<img src="./images/info.svg" alt="Info icon for error box" />
|
|
|
|
</button>
|
|
|
|
{{#each engineErrorsInfo}}
|
|
|
|
<div class="error_item">
|
|
|
|
<span class="engine_name">{{{this.engine}}}</span>
|
|
|
|
<span class="engine_name">{{{this.error}}}</span>
|
|
|
|
<span
|
|
|
|
class="severity_color"
|
|
|
|
style="background: {{{this.severity_color}}}; width: 400px; height: 400px"
|
|
|
|
>lsl</span
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
</div>
|
2023-04-22 07:35:07 -04:00
|
|
|
</div>
|