[F] Fix error message when closing course details
This commit is contained in:
@@ -30,7 +30,8 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Detail / Comments Popup -->
|
<!-- Detail / Comments Popup -->
|
||||||
<el-dialog id="detail-popup" v-if="detailsCourse" :visible.sync="detailsCourse" width="50%" top="10vh">
|
<el-dialog id="detail-popup" v-if="detailsCourse" :visible="detailsCourse != null" width="50%" top="10vh"
|
||||||
|
:before-close="closeDetails">
|
||||||
<span slot="title" class="header">
|
<span slot="title" class="header">
|
||||||
<div class="title">Ratings for {{detailsCourse.name}}</div>
|
<div class="title">Ratings for {{detailsCourse.name}}</div>
|
||||||
<span class="subtitle">And for {{detailsCourse.teacher}}</span>
|
<span class="subtitle">And for {{detailsCourse.teacher}}</span>
|
||||||
@@ -104,6 +105,11 @@
|
|||||||
{
|
{
|
||||||
this.detailsCourse = this.detailsCourse == course ? null as any as CourseInfo : course;
|
this.detailsCourse = this.detailsCourse == course ? null as any as CourseInfo : course;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
closeDetails()
|
||||||
|
{
|
||||||
|
this.detailsCourse = null as any as CourseInfo;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user