Only close ExamineLogModal when clicked outside
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Erki Aas 2022-11-17 14:46:21 +02:00
parent 9fb5d34118
commit a82373b856

View File

@ -83,7 +83,7 @@ export default {
params.api.sizeColumnsToFit()
},
close (e) {
if (e.target.className !== "ag-cell-value") {
if (e.target.className === "v-overlay__scrim") {
this.closeModal()
}
},