Added Tooltips to Deactivate Action and Type under shared Links

This commit is contained in:
johnnyq 2024-08-23 18:17:41 -04:00
parent a10b9bf93a
commit 9225efdc9e
1 changed files with 2 additions and 2 deletions

View File

@ -213,11 +213,11 @@ $sql_asset_retire = mysqli_query(
}
?>
<tr>
<td><i class="<?php echo $item_icon; ?> mr-2 text-secondary"></i><?php echo $item_name; ?></td>
<td><i class="<?php echo $item_icon; ?> mr-2 text-secondary" data-toggle="tooltip" title="<?php echo $item_type; ?>"></i><?php echo $item_name; ?></td>
<td>Views: <?php echo "$item_views / $item_view_limit" ?></td>
<td>Expires <?php echo $item_expire_at_human ?></td>
<td>
<a class="text-danger confirm-link" href="post.php?deactivate_shared_item=<?php echo $item_id; ?>">
<a class="text-danger confirm-link" href="post.php?deactivate_shared_item=<?php echo $item_id; ?>" data-toggle="tooltip" title="Deactivate Link">
<i class="fas fa-fw fa-calendar-times mr-2"></i>
</a>
</td>