Skip to content

Commit

Permalink
Merge branch 'master' into enhancement/restrict-priority-for-stable
Browse files Browse the repository at this point in the history
  • Loading branch information
whitdog47 authored Sep 12, 2023
2 parents ad08239 + c29fc20 commit 9665f55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-container fluid grid-list-xl>
<incidents-drill-down-sheet v-if="showDrillDown" :items="detailItems" @close="closeDrillDown" />
<incidents-drill-down-sheet v-model="showDrillDown" :items="detailItems" />
<v-layout row wrap>
<v-flex class="d-flex justify-start" lg6 sm6 xs12>
<v-btn color="info" @click="copyView"> Share View </v-btn>
Expand Down Expand Up @@ -211,9 +211,6 @@ export default {
}
)
},
closeDrillDown() {
this.showDrillDown = false
},
},
computed: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-navigation-drawer app clipped right bottom width="500">
<v-navigation-drawer v-bind="$attrs" v-on="$listeners" app clipped right bottom width="500">
<template #prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down Expand Up @@ -31,7 +31,7 @@ export default {
methods: {
hideSheet() {
this.$emit("close", false)
this.$emit("input", false)
},
},
Expand Down

0 comments on commit 9665f55

Please sign in to comment.