Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 38fe4b8

Browse filesBrowse files
committed
Fix for issue aviabird#54
* Refactoring for router code * Fixed list styling BUG.
1 parent 86f02d6 commit 38fe4b8
Copy full SHA for 38fe4b8

2 files changed

+15-4Lines changed: 15 additions & 4 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎src/app/app.routes.ts‎

Copy file name to clipboardExpand all lines: src/app/app.routes.ts
+14-4Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,23 @@ import { CanActivateViaAuthGuard } from './core/guards/auth.guard';
33

44

55
export const routes: Routes = [
6-
{ path: '', loadChildren: './home/index#HomeModule' },
7-
{ path: 'checkout', loadChildren: './checkout/checkout.module#CheckoutModule' },
6+
{
7+
path: '',
8+
loadChildren: './home/index#HomeModule' },
9+
{
10+
path: 'checkout',
11+
loadChildren: './checkout/checkout.module#CheckoutModule' },
812
{
913
path: 'user',
1014
loadChildren: './user/index#UserModule',
1115
canActivate: [ CanActivateViaAuthGuard ]
1216
},
13-
{ path: 'product', loadChildren: './product/index#ProductModule' },
14-
{ path: 'auth', loadChildren: './auth/auth.module#AuthModule' }
17+
{
18+
path: 'product',
19+
loadChildren: './product/index#ProductModule'
20+
},
21+
{
22+
path: 'auth',
23+
loadChildren: './auth/auth.module#AuthModule'
24+
}
1525
];
Collapse file

‎src/app/home/sidebar/taxons/taxons.component.scss‎

Copy file name to clipboardExpand all lines: src/app/home/sidebar/taxons/taxons.component.scss
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
position: relative;
1212
ul.taxonomy {
1313
margin-left: -37px;
14+
list-style: none;
1415
li.filter {
1516
font-size: 14px;
1617
margin-bottom: 7px;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.