Skip to content

Commit

Permalink
design
Browse files Browse the repository at this point in the history
  • Loading branch information
mbondyra committed Dec 2, 2020
1 parent b42d0c5 commit af5f00e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export function DimensionEditor(props: DimensionEditorProps) {
let label: EuiListGroupItemProps['label'] = operationPanels[operationType].displayName;
if (disabledStatus) {
label = (
<EuiToolTip position="top" content={disabledStatus}>
<EuiToolTip content={disabledStatus} display="block" position="left">
<span>{operationPanels[operationType].displayName}</span>
</EuiToolTip>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,16 @@ export const lastValueOperation: OperationDefinition<LastValueIndexPatternColumn
const sortOrderButtons = [
{
id: `lns-lastValue-ascending`,
label: 'Ascending',
label: i18n.translate('xpack.lens.indexPattern.lastValue.sortFieldAscending', {
defaultMessage: 'Ascending',
}),
value: 'asc',
},
{
id: `lns-lastValue-descending`,
label: 'Descending',
label: i18n.translate('xpack.lens.indexPattern.lastValue.sortField', {
defaultMessage: 'Descending',
}),
value: 'desc',
},
];
Expand Down

0 comments on commit af5f00e

Please sign in to comment.