Skip to content

Commit

Permalink
For larger sheets with ensure that they are not hidden regardless of …
Browse files Browse the repository at this point in the history
…screen size (#3255)
  • Loading branch information
kevgliss committed Apr 10, 2023
1 parent a87b295 commit 7c5e33f
Show file tree
Hide file tree
Showing 9 changed files with 65 additions and 9 deletions.
9 changes: 8 additions & 1 deletion src/dispatch/static/dispatch/src/case/NewSheet.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showNewSheet" app clipped right width="800">
<v-navigation-drawer
v-model="showNewSheet"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showCreateEdit" app clipped right width="800">
<v-navigation-drawer
v-model="showCreateEdit"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showCreateEdit" app clipped right width="800">
<v-navigation-drawer
v-model="showCreateEdit"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showCreateEdit" app clipped right width="800">
<v-navigation-drawer
v-model="showCreateEdit"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showCreateEdit" app clipped right width="800">
<v-navigation-drawer
v-model="showCreateEdit"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showCreateEdit" app clipped right width="800">
<v-navigation-drawer
v-model="showCreateEdit"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
2 changes: 1 addition & 1 deletion src/dispatch/static/dispatch/src/incident/EditSheet.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer app clipped right width="800">
<v-navigation-drawer app right width="800" :permanent="$vuetify.breakpoint.mdAndDown">
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showNewSheet" app clipped right width="800">
<v-navigation-drawer
v-model="showNewSheet"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down
9 changes: 8 additions & 1 deletion src/dispatch/static/dispatch/src/incident/NewSheet.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
<template>
<ValidationObserver v-slot="{ invalid, validated }">
<v-navigation-drawer v-model="showNewSheet" app clipped right width="800">
<v-navigation-drawer
v-model="showNewSheet"
app
clipped
right
width="800"
:permanent="$vuetify.breakpoint.mdAndDown"
>
<template v-slot:prepend>
<v-list-item two-line>
<v-list-item-content>
Expand Down

0 comments on commit 7c5e33f

Please sign in to comment.