mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Fixed grammar (#74725) # Conflicts: # rfcs/text/0001_lifecycle_setup.md * Delete 0001_lifecycle_setup.md
This commit is contained in:
parent
173cae0028
commit
4e9311f7ad
3 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@ declare module '@elastic/eui' {
|
|||
1. Open up the file and see how easy it would be to convert to TypeScript.
|
||||
2. If it's very straightforward, go for it.
|
||||
3. If it's not and you wish to stay focused on your own PR, get around the error by adding a type definition file in the same folder as the dependency, with the same name.
|
||||
4. Minimally you will need to type what you are using in your PR. No need to go crazy to fully type the thing or you might be there for awhile depending on what's available.
|
||||
4. Minimally you will need to type what you are using in your PR. No need to go crazy to fully type the thing or you might be there for a while depending on what's available.
|
||||
|
||||
For example:
|
||||
|
||||
|
|
|
@ -170,7 +170,7 @@ export class SearchInterceptor {
|
|||
if (this.longRunningToast) return;
|
||||
this.longRunningToast = this.deps.toasts.addInfo(
|
||||
{
|
||||
title: 'Your query is taking awhile',
|
||||
title: 'Your query is taking a while',
|
||||
text: getLongQueryNotification({
|
||||
application: this.deps.application,
|
||||
}),
|
||||
|
|
|
@ -51,7 +51,7 @@ export class EnhancedSearchInterceptor extends SearchInterceptor {
|
|||
if (this.longRunningToast) return;
|
||||
this.longRunningToast = this.deps.toasts.addInfo(
|
||||
{
|
||||
title: 'Your query is taking awhile',
|
||||
title: 'Your query is taking a while',
|
||||
text: getLongQueryNotification({
|
||||
cancel: this.cancelPending,
|
||||
runBeyondTimeout: this.runBeyondTimeout,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue