ui: some strings changed

This commit is contained in:
nick-delirium 2024-12-23 17:32:36 +01:00
parent 78731fac37
commit e60945c400
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
3 changed files with 3 additions and 3 deletions

View file

@ -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',

View file

@ -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>

View file

@ -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' }}
/>
);
}