diff options
author | BO41 <lukasw41@gmail.com> | 2018-10-16 01:04:50 +0200 |
---|---|---|
committer | Rigel Kent <par@rigelk.eu> | 2018-10-16 01:04:50 +0200 |
commit | dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb (patch) | |
tree | 4c0f57248268e780804243dac46f8ae9bda96a94 /client/src/app/shared/rest | |
parent | 4fe98be6b421498577dc0bbcbe22c105408f394d (diff) | |
download | PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.tar.gz PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.tar.zst PeerTube-dffd5d127f49eb63d2b2b3133aec75ec1d7e4dcb.zip |
update tslint config and fix member ordering (#1279)
Diffstat (limited to 'client/src/app/shared/rest')
-rw-r--r-- | client/src/app/shared/rest/rest-table.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/rest/rest-table.ts b/client/src/app/shared/rest/rest-table.ts index 26748f245..884588207 100644 --- a/client/src/app/shared/rest/rest-table.ts +++ b/client/src/app/shared/rest/rest-table.ts | |||
@@ -16,8 +16,6 @@ export abstract class RestTable { | |||
16 | private searchStream: Subject<string> | 16 | private searchStream: Subject<string> |
17 | private sortLocalStorageKey = 'rest-table-sort-' + this.constructor.name | 17 | private sortLocalStorageKey = 'rest-table-sort-' + this.constructor.name |
18 | 18 | ||
19 | protected abstract loadData (): void | ||
20 | |||
21 | initialize () { | 19 | initialize () { |
22 | this.loadSort() | 20 | this.loadSort() |
23 | this.initSearch() | 21 | this.initSearch() |
@@ -71,4 +69,6 @@ export abstract class RestTable { | |||
71 | onSearch (search: string) { | 69 | onSearch (search: string) { |
72 | this.searchStream.next(search) | 70 | this.searchStream.next(search) |
73 | } | 71 | } |
72 | |||
73 | protected abstract loadData (): void | ||
74 | } | 74 | } |