Skip to content

Commit

Permalink
Merge pull request #61 from michael-milette/fix-60-iconpath
Browse files Browse the repository at this point in the history
Fix #60: Path to icons now includes wwwroot.
  • Loading branch information
Limekiller committed Jun 4, 2024
2 parents b887871 + 029dd50 commit 6995be2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/control_bar.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@
<div title='{{#str}}loggingenabled, block_openai_chat{{/str}}' class='recording'></div>
{{/logging_enabled}}
<button class='openai_input_popout_btn' title="{{#str}}popout, block_openai_chat {{/str}}" id="popout">
<img src="{{{ pix_popout }}}" class='openai_input_popout_btn_icon' />
<img src="{{{config.wwwroot}}}{{{ pix_popout }}}" class='openai_input_popout_btn_icon' />
</button>
{{/is_edit_mode}}
<div id="control_bar">
<div class="openai_input_bar" id="input_bar">
<textarea rows=1 id="openai_input" placeholder="{{#str}}askaquestion, block_openai_chat{{/str}}" type="text" name="message"></textarea>
<button class='openai_input_submit_btn' title="{{#str}} submit {{/str}}" id="go">
<img src="{{{ pix_arrow_right }}}" class='openai_input_submit_btn_icon'/>
<img src="{{{config.wwwroot}}}{{{ pix_arrow_right }}}" class='openai_input_submit_btn_icon'/>
</button>
</div>
<button class='openai_input_refresh_btn' title="{{#str}}new_chat, block_openai_chat {{/str}}" id="refresh">
<img src="{{{ pix_refresh }}}" class='openai_input_refresh_btn_icon' />
<img src="{{{config.wwwroot}}}{{{ pix_refresh }}}" class='openai_input_refresh_btn_icon' />
</button>
</div>

0 comments on commit 6995be2

Please sign in to comment.