File tree Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ 1.0.6]
4
+
5
+ ### Fixed
6
+ - Fix links in settings
7
+
3
8
## [ 1.0.5]
4
9
5
10
- Updated documentation
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-material-admin" ,
3
- "version" : " 1.0.3 " ,
3
+ "version" : " 1.0.6 " ,
4
4
"scripts" : {
5
5
"ng" : " ng" ,
6
6
"start" : " ng serve" ,
Original file line number Diff line number Diff line change 20
20
</ div >
21
21
22
22
< div class ="buttons-wrapper ">
23
- < button mat-flat -button color ="success " class =" button " > buy </ button >
24
- < button mat-flat -button color ="primary " class =" button " > documentation </ button >
23
+ < a mat-raised -button color ="success " target =" _blank " href =" https://flatlogic.com/templates/angular-material-admin-full " > BUY </ a >
24
+ < a mat-raised -button color ="primary " routerLink =" {{routes.OVERVIEW}} " > DOCUMENTATION </ a >
25
25
</ div >
26
26
</ div >
27
27
</ mat-menu >
Original file line number Diff line number Diff line change 62
62
text-transform : uppercase ;
63
63
}
64
64
65
- button + button {
65
+ a + a {
66
66
margin-top : 24px ;
67
67
}
Original file line number Diff line number Diff line change 1
1
import { Component , EventEmitter , Output } from '@angular/core' ;
2
+ import { routes } from '../../consts/routes' ;
2
3
3
4
@Component ( {
4
5
selector : 'app-settings-menu-app' ,
5
6
templateUrl : './settings-menu.component.html' ,
6
7
styleUrls : [ './settings-menu.component.scss' ]
7
8
} )
8
9
export class SettingsMenuAppComponent {
10
+ public routes : typeof routes = routes ;
11
+
9
12
@Output ( ) themeOnBlue : EventEmitter < boolean > = new EventEmitter < boolean > ( ) ;
10
13
@Output ( ) themeOnPink : EventEmitter < boolean > = new EventEmitter < boolean > ( ) ;
11
14
@Output ( ) themeOnGreen : EventEmitter < boolean > = new EventEmitter < boolean > ( ) ;
You can’t perform that action at this time.
0 commit comments