Skip to content

Commit

Permalink
Uses a generic name for the filter type message
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Jan 19, 2023
1 parent 45258cc commit 7033fed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const StyledAsterisk = styled.span`
}
`;

const TimeRangeInfo = styled.div`
const FilterTypeInfo = styled.div`
${({ theme }) => `
width: 49%;
font-size: ${theme.typography.sizes.s}px;
Expand Down Expand Up @@ -809,11 +809,11 @@ const FiltersConfigForm = (
</StyledFormItem>
</StyledContainer>
{formFilter?.filterType === 'filter_time' && (
<TimeRangeInfo>
<FilterTypeInfo>
{t(`Dashboard time range filters apply to temporal columns defined in
the filter section of each chart. Add temporal columns to the chart
filters to have this dashboard filter impact those charts.`)}
</TimeRangeInfo>
</FilterTypeInfo>
)}
{hasDataset && (
<StyledRowContainer>
Expand Down

0 comments on commit 7033fed

Please sign in to comment.