Skip to content

Commit ce02b6b

Browse files
author
Ives van Hoorne
committed
Add Algolia logo
1 parent 193e283 commit ce02b6b

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

packages/app/src/app/pages/Sandbox/Editor/Workspace/Dependencies/SearchDependencies.js

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
import React from 'react';
2-
import { InstantSearch, Configure, Pagination } from 'react-instantsearch/dom';
2+
import {
3+
InstantSearch,
4+
Configure,
5+
Pagination,
6+
PoweredBy,
7+
} from 'react-instantsearch/dom';
38
import { connectAutoComplete } from 'react-instantsearch/connectors';
49
import Downshift from 'downshift';
510
import styled from 'styled-components';
11+
import theme from 'common/theme';
612

713
import 'app/pages/Search/Search.css';
814

@@ -133,6 +139,14 @@ export default class SearchDependencies extends React.PureComponent {
133139
onManualSelect={this.handleManualSelect}
134140
onHitVersionChange={this.handleHitVersionChange}
135141
/>
142+
<div
143+
style={{
144+
height: 40,
145+
backgroundColor: theme.background2.darken(0.2)(),
146+
}}
147+
>
148+
<PoweredBy />
149+
</div>
136150
</InstantSearch>
137151
);
138152
}

0 commit comments

Comments
 (0)