Skip to content

Commit

Permalink
Added edition of characters
Browse files Browse the repository at this point in the history
  • Loading branch information
leoronne committed Nov 1, 2020
1 parent 1dd4bbf commit 974c304
Show file tree
Hide file tree
Showing 14 changed files with 363 additions and 200 deletions.
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"axios": "^0.21.0",
"formik": "^2.1.7",
"formik": "^2.2.1",
"i18next": "^19.7.0",
"i18next-xhr-backend": "^3.2.2",
"immer": "^7.0.14",
Expand Down
3 changes: 2 additions & 1 deletion client/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
"results-3": "are on your favorites list",
"return": "Return",
"error-page-1": "Oops, something is wrong",
"error-page-2": "We couldn't find the page you are looking for"
"error-page-2": "We couldn't find the page you are looking for",
"save": "Save"
}
3 changes: 2 additions & 1 deletion client/public/locales/pt/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@
"results-3": "estão na sua lista de favoritos",
"return": "Voltar",
"error-page-1": "Ops, há algo de errado",
"error-page-2": "Não foi possível encontrar a página que você esta procurando"
"error-page-2": "Não foi possível encontrar a página que você esta procurando",
"save": "Salvar"
}
2 changes: 1 addition & 1 deletion client/src/@types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export interface CharacterData {
aliases: string;
api_detail_url: string;
birth: string;
count_of_issue_appearances: number;
count_of_issue_appearances: number | string;
// creators: Array<{
// api_detail_url: string;
// id: number;
Expand Down
2 changes: 1 addition & 1 deletion client/src/layouts/Default/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const Container = styled.div`
}
@media (min-width: 1366px) {
/* height: 100%; */
height: 100%;
}
`;

Expand Down
Loading

0 comments on commit 974c304

Please sign in to comment.