File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ export class ExceptionComponent {
75
75
backRouterLink = input < string | NzSafeAny [ ] > ( '/' ) ;
76
76
77
77
_img = computed ( ( ) => {
78
- const v = this . typeItem ( ) ?. img ?? this . img ( ) ;
78
+ const v = this . img ( ) ?? this . typeItem ( ) ?. img ;
79
79
return v == null ? null : this . dom . bypassSecurityTrustStyle ( `url('${ v } ')` ) ;
80
80
} ) ;
81
81
_title = computed ( ( ) => {
82
- const v = this . typeItem ( ) ?. title ?? this . title ( ) ;
82
+ const v = this . title ( ) ?? this . typeItem ( ) ?. title ;
83
83
return v == null ? null : this . dom . bypassSecurityTrustHtml ( v ) ;
84
84
} ) ;
85
85
_desc = computed ( ( ) => {
86
- const v = this . typeItem ( ) ?. desc ?? this . desc ( ) ?? this . locale ( ) [ this . type ( ) ] ;
86
+ const v = this . desc ( ) ?? this . typeItem ( ) ?. desc ?? this . locale ( ) [ this . type ( ) ] ;
87
87
return v == null ? null : this . dom . bypassSecurityTrustHtml ( v ) ;
88
88
} ) ;
89
89
You can’t perform that action at this time.
0 commit comments