Skip to content

Commit 20a8f28

Browse files
committed
Update badge tooltip for manual mode switch
Changed the tooltip text for the LIVE badge from 'Switch to POST mode' to 'Switch to Manual mode' to better reflect the action performed when switching modes.
1 parent 43cd95d commit 20a8f28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

application/views/qso/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ function switchMode(url) {
6060

6161
<li class="nav-item ms-auto d-flex align-items-center">
6262
<?php if ($_GET['manual'] == 0) {
63-
echo " <span class=\"badge text-bg-success\" style=\"cursor: pointer; font-size: 0.9rem; padding: 0.4rem 0.9rem;\" onclick=\"switchMode('" . site_url('qso') . "?manual=1')\" title=\"Switch to POST mode\">LIVE</span>";
63+
echo " <span class=\"badge text-bg-success\" style=\"cursor: pointer; font-size: 0.9rem; padding: 0.4rem 0.9rem;\" onclick=\"switchMode('" . site_url('qso') . "?manual=1')\" title=\"Switch to Manual mode\">LIVE</span>";
6464
};
6565
if ($_GET['manual'] == 1) {
6666
echo " <span class=\"badge text-bg-danger\" style=\"cursor: pointer; font-size: 0.9rem; padding: 0.4rem 0.9rem;\" onclick=\"switchMode('" . site_url('qso') . "?manual=0')\" title=\"Switch to LIVE mode\">POST</span>";

0 commit comments

Comments
 (0)