Skip to content

Commit

Permalink
fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasiliy Trushin committed Feb 4, 2025
1 parent 55d42ea commit 1a65cb9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion statshouse-ui/src/admin/api/saveMetric.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const fetchAndProcessMetric = async (url: string) => {
to,
}))
: [],
isRaw: tag.raw,
isRaw: tag.raw || tag.raw_kind != null,
raw_kind: tag.raw_kind,
})),
tags_draft,
Expand All @@ -129,5 +129,8 @@ export const fetchAndProcessMetric = async (url: string) => {
version: metric.version,
group_id: metric.group_id,
fair_key_tag_ids: metric.fair_key_tag_ids,
skip_max_host: !!metric.skip_max_host,
skip_min_host: !!metric.skip_min_host,
skip_sum_square: !!metric.skip_sum_square,
};
};

0 comments on commit 1a65cb9

Please sign in to comment.