Add a hint for quick reply slots.

This commit is contained in:
Cohee 2023-08-08 20:57:23 +03:00
parent e343f2461d
commit 7c6429a577
2 changed files with 2 additions and 1 deletions

View File

@ -3681,7 +3681,7 @@
</div> </div>
<div id="hotswap_template" class="template_element"> <div id="hotswap_template" class="template_element">
<div class="hotswapAvatar"> <div class="hotswapAvatar" title="Add a character/group to favorites to display it here!">
<img src="/img/ai4.png"> <img src="/img/ai4.png">
</div> </div>
</div> </div>

View File

@ -380,6 +380,7 @@ export async function favsToHotswap() {
thisHotSwapSlot.attr('grid', isGroup ? grid : ''); thisHotSwapSlot.attr('grid', isGroup ? grid : '');
thisHotSwapSlot.attr('chid', isCharacter ? chid : ''); thisHotSwapSlot.attr('chid', isCharacter ? chid : '');
thisHotSwapSlot.data('id', isGroup ? grid : chid); thisHotSwapSlot.data('id', isGroup ? grid : chid);
thisHotSwapSlot.attr('title', '');
if (isGroup) { if (isGroup) {
const group = groups.find(x => x.id === grid); const group = groups.find(x => x.id === grid);