diff --git a/client/app/scripts/components/help-panel.js b/client/app/scripts/components/help-panel.js index 07672b944..b7147aaa6 100644 --- a/client/app/scripts/components/help-panel.js +++ b/client/app/scripts/components/help-panel.js @@ -51,19 +51,31 @@ function renderShortcutPanel() { const BASIC_SEARCHES = [ {term: 'foo', label: 'All fields for foo'}, - {term: 'pid: 12345', label: 'Any field matching pid for the value 12345'}, + { + term: 'pid: 12345', + label: Any field matching pid for the value 12345 + }, ]; const REGEX_SEARCHES = [ - {term: 'foo|bar', label: 'All fields for foo or bar'}, - {term: 'command: foo(bar|baz)', label: 'Command field for foobar or foobaz'}, + { + term: 'foo|bar', + label: 'All fields for foo or bar' + }, + { + term: 'command: foo(bar|baz)', + label: command field for foobar or foobaz + }, ]; const METRIC_SEARCHES = [ - {term: 'cpu > 4%', label: 'CPU greater than 4%'}, - {term: 'memory < 10mb', label: 'memory less than 4mb'}, + {term: 'cpu > 4%', label: CPU greater than 4%}, + { + term: 'memory < 10mb', + label: Memory less than 10 megabytes + }, ]; diff --git a/client/app/scripts/components/search.js b/client/app/scripts/components/search.js index 4d64762c9..70fd88839 100644 --- a/client/app/scripts/components/search.js +++ b/client/app/scripts/components/search.js @@ -133,9 +133,9 @@ class Search extends React.Component { {!showPinnedSearches &&