ui: some strings changed
This commit is contained in:
parent
78731fac37
commit
e60945c400
3 changed files with 3 additions and 3 deletions
|
|
@ -136,7 +136,7 @@ const SeriesTypeOptions = observer(({ metric }: { metric: any }) => {
|
|||
|
||||
const WidgetViewTypeOptions = observer(({ metric }: { metric: any }) => {
|
||||
const chartTypes = {
|
||||
lineChart: 'Chart',
|
||||
lineChart: 'Line',
|
||||
barChart: 'Column',
|
||||
areaChart: 'Area',
|
||||
pieChart: 'Pie',
|
||||
|
|
|
|||
|
|
@ -211,7 +211,7 @@ export function AutoCompleteContainer(props: Props) {
|
|||
</>
|
||||
) : (
|
||||
<div className={'text-neutral-500/90'}>
|
||||
{props.placeholder ? props.placeholder : 'Select events'}
|
||||
{props.placeholder ? props.placeholder : 'Select value(s)'}
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -169,7 +169,7 @@ function FilterValue(props: Props) {
|
|||
placeholder={filter.placeholder}
|
||||
onSelect={(e, item, index) => onChange(e, item, index)}
|
||||
icon={filter.icon}
|
||||
modalProps={{ placeholder: isEvent ? 'Search event' : 'Filter by'}}
|
||||
modalProps={{ placeholder: 'Search' }}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue