Skip to content

Commit

Permalink
Add (client) to aliases otherwise metrics from backend and client are…
Browse files Browse the repository at this point in the history
… clashed
  • Loading branch information
MaXal committed Nov 5, 2024
1 parent b48c8fe commit 29cbf84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ interface Props {
const { label, measure, projects, machines = null, valueUnit = "ms", legendFormatter = (name: string) => name, aliases = null } = defineProps<Props>()
const projectWithClient = [...projects, ...projects.map((project) => `${project}/embeddedClient`)]
const aliasesWithClient = aliases != null ? [...aliases, ...aliases] : null
const aliasesWithClient = aliases != null ? [...aliases, ...aliases.map((aliases) => `${aliases}(client)`)] : null
</script>

0 comments on commit 29cbf84

Please sign in to comment.