Rename the following components

This commit is contained in:
SondreB 2023-01-13 00:38:41 +01:00
parent 1249f667d1
commit 63166db4df
No known key found for this signature in database
GPG Key ID: D6CC44C75005FDBF
8 changed files with 8 additions and 8 deletions

View File

@ -15,8 +15,8 @@ import { NoteComponent } from './note/note.component';
import { LicensesComponent } from './about/licenses/licenses.component';
import { ChatComponent } from './chat/chat.component';
import { FeedComponent } from './feed/feed.component';
import { FollowingComponent } from './following/following.component';
import { FollowersComponent } from './followers/followers.component';
import { FollowingComponent } from './following/following';
import { FollowersComponent } from './followers/followers';
const routes: Routes = [
{

View File

@ -85,8 +85,8 @@ import { NgxLoadingButtonsModule } from 'ngx-loading-buttons';
import { ContentPhotosComponent } from './shared/content-photos/content-photos.component';
import { NgxMatDatetimePickerModule, NgxMatNativeDateModule, NgxMatTimepickerModule } from '@angular-material-components/datetime-picker';
import { MatDatepickerModule } from '@angular/material/datepicker';
import { FollowingComponent } from './following/following.component';
import { FollowersComponent } from './followers/followers.component';
import { FollowingComponent } from './following/following';
import { FollowersComponent } from './followers/followers';
import { ProfileWidgetComponent } from './shared/profile-widget/profile-widget';
@NgModule({

View File

@ -7,8 +7,8 @@ import { ApplicationState } from '../services/applicationstate.service';
@Component({
selector: 'app-followers',
templateUrl: './followers.component.html',
styleUrls: ['./followers.component.css'],
templateUrl: './followers.html',
styleUrls: ['./followers.css'],
// changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FollowersComponent {

View File

@ -9,8 +9,8 @@ import { ProfileService } from '../services/profile.service';
@Component({
selector: 'app-following',
templateUrl: './following.component.html',
styleUrls: ['./following.component.css'],
templateUrl: './following.html',
styleUrls: ['./following.css'],
// changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FollowingComponent {