mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-21 21:48:21 -05:00
✨ feat: rename search_page_search_bar to search_bar (#185)
This commit is contained in:
parent
0e14c7d80f
commit
d530410e42
@ -1,6 +1,6 @@
|
|||||||
{{>header this.style}}
|
{{>header this.style}}
|
||||||
<main class="results">
|
<main class="results">
|
||||||
{{>search_page_search_bar this}}
|
{{>search_bar this}}
|
||||||
<div class="results_aggregated">
|
<div class="results_aggregated">
|
||||||
{{#if results}} {{#each results}}
|
{{#if results}} {{#each results}}
|
||||||
<div class="result">
|
<div class="result">
|
||||||
|
@ -1,2 +1,27 @@
|
|||||||
{{>bar this}}
|
{{>bar this}}
|
||||||
|
<div class="error_box">
|
||||||
|
{{#if engineErrorsInfo}}
|
||||||
|
<button onclick="toggleErrorBox()" class="error_box_toggle_button">
|
||||||
|
<img src="./images/warning.svg" alt="Info icon for error box" />
|
||||||
|
</button>
|
||||||
|
<div class="dropdown_error_box">
|
||||||
|
{{#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}}};"></span>
|
||||||
|
</div>
|
||||||
|
{{/each}}
|
||||||
|
</div>
|
||||||
|
{{else}}
|
||||||
|
<button onclick="toggleErrorBox()" class="error_box_toggle_button">
|
||||||
|
<img src="./images/info.svg" alt="Warning icon for error box" />
|
||||||
|
</button>
|
||||||
|
<div class="dropdown_error_box">
|
||||||
|
<div class="no_errors">
|
||||||
|
Everything looks good 🙂!!
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{{/if}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,27 +0,0 @@
|
|||||||
{{>bar this}}
|
|
||||||
<div class="error_box">
|
|
||||||
{{#if engineErrorsInfo}}
|
|
||||||
<button onclick="toggleErrorBox()" class="error_box_toggle_button">
|
|
||||||
<img src="./images/warning.svg" alt="Info icon for error box" />
|
|
||||||
</button>
|
|
||||||
<div class="dropdown_error_box">
|
|
||||||
{{#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}}};"></span>
|
|
||||||
</div>
|
|
||||||
{{/each}}
|
|
||||||
</div>
|
|
||||||
{{else}}
|
|
||||||
<button onclick="toggleErrorBox()" class="error_box_toggle_button">
|
|
||||||
<img src="./images/info.svg" alt="Warning icon for error box" />
|
|
||||||
</button>
|
|
||||||
<div class="dropdown_error_box">
|
|
||||||
<div class="no_errors">
|
|
||||||
Everything looks good 🙂!!
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{{/if}}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
Loading…
Reference in New Issue
Block a user