fix: replace p tag with span for "Delete Selected" button text in history.

This commit is contained in:
Namit2003 2025-12-21 13:56:07 -05:00
parent d70d803038
commit 3ef05e35ef

View file

@ -54,7 +54,7 @@ export const history = new Elysia().use(userService).get(
id="delete-selected-btn"
class="flex btn-secondary flex-row gap-2 text-contrast"
>
<DeleteIcon /> <p>Delete Selected (<span id="selected-count">0</span>)</p>
<DeleteIcon /> <span>Delete Selected (<span id="selected-count">0</span>)</span>
</button>
</div>
</div>