refactor: follow latest component naming
This commit is contained in:
parent
fa144db010
commit
9c070e0f5c
11
.idea/laravel-idea.xml
generated
11
.idea/laravel-idea.xml
generated
@ -6,7 +6,18 @@
|
||||
</option>
|
||||
</component>
|
||||
<component name="LaravelIdeaMainSettings">
|
||||
<option name="codeGeneration">
|
||||
<LaravelCodeGeneration>
|
||||
<option name="generationStringSettings">
|
||||
<map>
|
||||
<entry key="createEloquentScope:namespace" value="Models\Scopes" />
|
||||
<entry key="createModel:namespace" value="Models" />
|
||||
</map>
|
||||
</option>
|
||||
</LaravelCodeGeneration>
|
||||
</option>
|
||||
<option name="frameworkFound" value="true" />
|
||||
<option name="laravelBasePath" value="backend" />
|
||||
<option name="userClassName" value="\App\Models\User" />
|
||||
</component>
|
||||
</project>
|
||||
2
.idea/neoban.iml
generated
2
.idea/neoban.iml
generated
@ -137,6 +137,8 @@
|
||||
<excludeFolder url="file://$MODULE_DIR$/backend/vendor/vlucas/phpdotenv" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/backend/vendor/voku/portable-ascii" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/backend/vendor/webmozart/assert" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/backend/storage/app" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/backend/storage/framework" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
|
||||
@ -3,6 +3,6 @@ import { Routes } from '@angular/router';
|
||||
export const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
loadComponent: () => import('./chat/chat.component').then(m => m.ChatComponent)
|
||||
loadComponent: () => import('./chat/chat').then(m => m.Chat)
|
||||
}
|
||||
];
|
||||
|
||||
@ -7,10 +7,10 @@ import { ChatStore } from './chat.store';
|
||||
selector: 'app-chat',
|
||||
standalone: true,
|
||||
imports: [CommonModule, ReactiveFormsModule],
|
||||
templateUrl: './chat.component.html',
|
||||
styleUrl: './chat.component.css'
|
||||
templateUrl: './chat.html',
|
||||
styleUrl: './chat.css'
|
||||
})
|
||||
export class ChatComponent {
|
||||
export class Chat {
|
||||
readonly chatStore = inject(ChatStore);
|
||||
|
||||
@ViewChild('scrollContainer') private scrollContainer!: ElementRef;
|
||||
Loading…
x
Reference in New Issue
Block a user