Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,7 @@ uiModules.get('apps/management')
const dateFields = fields.filter(field => field.type === 'date');

if (dateFields.length === 0) {
return [{
display: `The indices which match this index pattern don't contain any time fields.`,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we want to keep this message, right? I think it's just the caret which is out of place, unless I'm missing something.

Copy link
Copy Markdown
Contributor Author

@jen-huang jen-huang Jan 30, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This string isn't actually being used for the display, the real string is in step_time_field.html so I removed this one as extraneous code.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh wow OK!

}];
return [];
}

return [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ <h2 class="euiTitle euiTitle--small">
</select>

<svg
ng-hide="stepTimeField.canShowNoTimeBasedFieldsMessage()"
class="euiIcon euiFormControlLayout__icon euiFormControlLayout__icon--right euiIcon--medium"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
Expand Down