Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/api/reposAPI.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NuxtAxiosInstance } from '@nuxtjs/axios';
import config from '@/config';
import services from '@/src/services';

import { AppState } from '@/src/interfaces/AppState';
import {
Expand Down Expand Up @@ -51,7 +51,7 @@ export const repositoriesAPICreator = (
repositories: repositoriesURL,
programmingLanguages,
},
} = config;
} = services;

return {
getUserRepositories(url = userURL.repositories) {
Expand Down
4 changes: 2 additions & 2 deletions plugins/api/userAPI.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NuxtAxiosInstance } from '@nuxtjs/axios';
import config from '@/config';
import services from '@/src/services';

import { UserData, User } from '@/src/interfaces/User/User';
import {
Expand Down Expand Up @@ -29,7 +29,7 @@ export const userAPICreator = (

const {
urls: { auth, user: userURL },
} = config;
} = services;

return {
getUser(authToken) {
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/AppHeader/AppHeader.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.header {
display: flex;
align-items: center;
min-height: 51px;
padding: 8px 0;
background-color: var(--dark-theme-secondary-bg);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.12), 0 4px 4px rgba(0, 0, 0, 0.24);
}
Expand Down
4 changes: 2 additions & 2 deletions src/blocks/HowItWorks/HowItWorks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ export default {
{
id: 2,
label: 'Find repository',
img: 'add.svg',
img: 'list.svg',
text:
'Find repositories you would like to help. You can filter by language, stars or issues count',
},
{
id: 3,
label: 'Add repository',
img: 'list.svg',
img: 'add.svg',
text:
'If you want to find an open source help for your project you are able to add your repository to our service from any connected version control system.',
},
Expand Down
File renamed without changes.