Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
betocantu93 committed Nov 11, 2024
1 parent 28da63b commit 30d4094
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/core/src/components/eui-combo-box.gts
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,13 @@ export default class EuiComboBoxComponent extends Component<EuiComboBoxSignature
} = { results: [], options: [], searchText: this.searchText };

get loadingMessage() {
return;
this.args.loadingMessage ||
return (
this.args.loadingMessage ||
this.euiI18n.lookupToken(
'euiComboBox.loadingMessage',
'Loading options...'
);
)
);
}

<template>
Expand Down

0 comments on commit 30d4094

Please sign in to comment.