File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 18
18
" component library"
19
19
],
20
20
"license" : " MIT" ,
21
- "version" : " 2.2.2 " ,
21
+ "version" : " 2.2.3 " ,
22
22
"scripts" : {
23
23
"serve" : " vue-cli-service serve" ,
24
24
"build" : " vue-cli-service build" ,
Original file line number Diff line number Diff line change 62
62
export default class PCard extends Vue {
63
63
64
64
/**
65
- * Title content for the card. **Deprecated** Actions will be removed on future releases, use PCardHeader instead props.
65
+ * Title content for the card. **Deprecated** Actions will be removed on future releases,
66
+ * use PCardHeader instead props.
66
67
*/
67
68
@Prop ({type: String , default: null }) public title! : string ;
68
69
69
70
/**
70
- * Card description. **Deprecated** Actions will be removed on future releases, use PCardHeader instead props.
71
+ * Card description. **Deprecated** Actions will be removed on future releases,
72
+ * use PCardHeader instead props.
71
73
*/
72
74
@Prop ({type: String , default: null }) public shortDescription! : string ;
73
75
84
86
@Prop ({type: Boolean , default: false }) public sectioned! : boolean ;
85
87
86
88
/**
87
- * Actions for Header. **Deprecated** Actions will be removed on future releases, use PCardHeader instead props.
89
+ * Actions for Header. **Deprecated** Actions will be removed on future releases,
90
+ * use PCardHeader instead props.
88
91
*/
89
92
@Prop ({type: [Array , String ], default: null }) public actions! : [];
90
93
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export default class PPopover extends Vue {
137
137
}
138
138
const popoverOverlay = document .getElementById (this .realId + ' Overlay' ) as HTMLElement ;
139
139
const rootElemId = this .$root .$el .id ;
140
- if (rootElemId ) {
140
+ if (rootElemId && popoverOverlay ) {
141
141
const rootElement = document .getElementById (rootElemId ) as HTMLElement ;
142
142
rootElement .append (popoverOverlay );
143
143
this .isAppended = true ;
You can’t perform that action at this time.
0 commit comments