Skip to content
This repository has been archived by the owner on Aug 27, 2018. It is now read-only.

Commit

Permalink
Merge pull request #85 from get-focus/fix-style-button
Browse files Browse the repository at this point in the history
Fix style button
  • Loading branch information
TomGallon authored Jan 6, 2017
2 parents ddb6dcf + ea65436 commit 393464c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "focus-search",
"version": "3.0.1-beta6",
"version": "3.0.1-beta8",
"description": "Serach FOCUS",
"main": "src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/results.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ ResultList.defaultProps = {

export class ResultGroup extends PureComponent {
render() {
const {customLineProps, isAllScopeResults, isGroup, ListComponent, paginateFunction, scope, valuesForResults, unitSearchDispatch, groupSelected,paginateProps} = this.props;
const {customLineProps, isAllScopeResults, isGroup, ListComponent, paginateFunction, scope, valuesForResults, unitSearchDispatch, groupSelected, paginateProps} = this.props;
return (
<div data-focus='result-group'>
{!isAllScopeResults &&
Expand Down
1 change: 0 additions & 1 deletion src/components/searchbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export class SearchBarInput extends PureComponent {
if(onChange) onChange({term: value});
}
render() {
console.log(this.props.placeholder)
return (
<InputText
data-focus='search-bar-input'
Expand Down
2 changes: 1 addition & 1 deletion src/style/list.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
position: absolute;
right:0;
padding:10px 20px;
& > * {
button {
margin: 0 5px;
cursor: pointer;
}
Expand Down
9 changes: 4 additions & 5 deletions src/style/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
display: flex;
justify-content: flex-end;
align-items: center;
>div{
margin-left: 30px;
margin-bottom: 10px;
text-align: center;
margin: 0 0 40px 0;
& > div {
margin-left: 30px;
text-align: center;
}

}
2 changes: 1 addition & 1 deletion src/translation/fr-FR.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
totalCount_plural: '{{count}} éléments affichés'
},
sort: 'Trier',
selected: 'aucun élément sélectionné',
selected: '{{count}} élément sélectionné',
selected_plural: '{{count}} éléments sélectionnés',
results: {
number: '{{count}} résultat',
Expand Down

0 comments on commit 393464c

Please sign in to comment.