Skip to content

Commit

Permalink
Merge pull request #3847 from Simpler1/patch-2
Browse files Browse the repository at this point in the history
fix(tags): Tags were not populated on watch view
  • Loading branch information
connortechnology committed Mar 2, 2024
2 parents dc23bea + 3d00826 commit 904f062
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/ajax/watch.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}
$where = 'WHERE MonitorId = '.$mid;

$col_str = ' E.*, GROUP_CONCAT(T.Name SEPARATOR ", ") AS Tag ';
$col_str = ' E.*, GROUP_CONCAT(T.Name SEPARATOR ", ") AS Tags ';

$sql = 'SELECT ' .$col_str. ' FROM `Events` AS E
LEFT JOIN Events_Tags AS ET ON E.Id = ET.EventId
Expand Down

0 comments on commit 904f062

Please sign in to comment.