style(web): skip row-hover highlight on empty-state rows
Hovering the empty-state row in LiveLogs/Dashboard tables briefly lit the full-width td with the data-row glow. Tag the placeholder tr with .empty-row and scope the .logs-table hover rule to :not(.empty-row).
This commit is contained in:
@@ -417,7 +417,7 @@ const Dashboard: React.FC<DashboardProps> = ({ searchQuery }) => {
|
||||
</tr>
|
||||
);
|
||||
}) : (
|
||||
<tr>
|
||||
<tr className="empty-row">
|
||||
<td colSpan={6} style={{ padding: 0 }}>
|
||||
<EmptyState
|
||||
icon={Activity}
|
||||
|
||||
Reference in New Issue
Block a user