Skip to content

Commit c0dfc73

Browse files
committed
fix(bug): fix 404 and build issues
1 parent e2d0e6e commit c0dfc73

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ClientApp/app/app.module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ import { HomeComponent } from './containers/home/home.component';
1616
import { UsersComponent } from './containers/users/users.component';
1717
import { UserDetailComponent } from './components/user-detail/user-detail.component';
1818
import { CounterComponent } from './containers/counter/counter.component';
19-
import { ChatComponent } from './containers/chat/chat.component';
19+
// import { ChatComponent } from './containers/chat/chat.component';
2020
import { NotFoundComponent } from './containers/not-found/not-found.component';
2121
import { NgxBootstrapComponent } from './containers/ngx-bootstrap-demo/ngx-bootstrap.component';
2222

2323
import { LinkService } from './shared/link.service';
2424
import { UserService } from './shared/user.service';
25-
import { ConnectionResolver } from './shared/route.resolver';
25+
// import { ConnectionResolver } from './shared/route.resolver';
2626
import { ORIGIN_URL } from './shared/constants/baseurl.constants';
2727
import { TransferHttpModule } from '../modules/transfer-http/transfer-http.module';
2828

@@ -43,7 +43,7 @@ export function createTranslateLoader(http: Http, baseHref) {
4343
UsersComponent,
4444
UserDetailComponent,
4545
HomeComponent,
46-
ChatComponent,
46+
// ChatComponent,
4747
NotFoundComponent,
4848
NgxBootstrapComponent
4949
],
@@ -145,7 +145,7 @@ export function createTranslateLoader(http: Http, baseHref) {
145145
providers: [
146146
LinkService,
147147
UserService,
148-
ConnectionResolver,
148+
// ConnectionResolver,
149149
TranslateModule
150150
]
151151
})

ClientApp/app/components/navmenu/navmenu.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
<span class='glyphicon glyphicon-star-empty'></span> Lazy-loaded demo
4040
</a>
4141
</li>
42-
<li [routerLinkActive]="['link-active']" (click)="collapseMenu()">
42+
<!-- <li [routerLinkActive]="['link-active']" (click)="collapseMenu()">
4343
<a [routerLink]="['/chat']">
4444
<span class='glyphicon glyphicon-comment'></span> Chat
4545
</a>
46-
</li>
46+
</li> -->
4747
</ul>
4848
</div>
4949
</div>

0 commit comments

Comments
 (0)