diff --git a/src/components/FindBar/FindBar.css b/src/components/FindBar/FindBar.css
index ebc75482..5c2e593a 100644
--- a/src/components/FindBar/FindBar.css
+++ b/src/components/FindBar/FindBar.css
@@ -60,7 +60,7 @@
.suggestions {
display: table-cell;
- width: 50%;
+ width: 100%;
padding-right: 10px;
}
diff --git a/src/components/FindBar/FindBar.js b/src/components/FindBar/FindBar.js
index fd78b6bf..cc60d5a7 100644
--- a/src/components/FindBar/FindBar.js
+++ b/src/components/FindBar/FindBar.js
@@ -326,9 +326,6 @@ class FindBar extends Component {
{commands}
-
- Your past searches and commands
-
);
}
diff --git a/src/containers/App.js b/src/containers/App.js
index 225842c4..0482490b 100644
--- a/src/containers/App.js
+++ b/src/containers/App.js
@@ -106,14 +106,14 @@ class App extends React.Component {
if (defaultCommands.length < 5) defaultCommands.push(`show_${ collection.get('name') }`);
- if (collection.get('create') === true) {
- commands.push({
- id: `create_${ collection.get('name') }`,
- pattern: `Create new ${ pluralize(collection.get('label'), 1) }(:itemName as ${ pluralize(collection.get('label'), 1) } Name)`,
- type: CREATE_COLLECTION,
- payload: { collectionName: collection.get('name') },
- });
- }
+ // if (collection.get('create') === true) {
+ // commands.push({
+ // id: `create_${ collection.get('name') }`,
+ // pattern: `Create new ${ pluralize(collection.get('label'), 1) }(:itemName as ${ pluralize(collection.get('label'), 1) } Name)`,
+ // type: CREATE_COLLECTION,
+ // payload: { collectionName: collection.get('name') },
+ // });
+ // }
});
commands.push({ id: HELP, type: HELP, pattern: 'Help' });