Fix follows backend URL
And improve "no followers/followings" message position
This commit is contained in:
parent
7cf75374ca
commit
ac84064a6c
|
@ -12,3 +12,7 @@ a {
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.no-results {
|
||||||
|
justify-content: flex-start;
|
||||||
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ import { RestExtractor, RestPagination, RestService } from '../rest'
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
export class FollowService {
|
export class FollowService {
|
||||||
private static BASE_APPLICATION_URL = 'https://peertube2.cpy.re' + '/api/v1/server'
|
private static BASE_APPLICATION_URL = environment.apiUrl + '/api/v1/server'
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
private authHttp: HttpClient,
|
private authHttp: HttpClient,
|
||||||
|
|
Loading…
Reference in New Issue