This commit is contained in:
@@ -55,6 +55,7 @@ Coded by importance
|
|||||||
|
|
||||||
## TESTING CASES
|
## TESTING CASES
|
||||||
|
|
||||||
|
- Test menu on workorder form in smaller screen sizes on other devices, works in testing but will it work on a phone and iPad?
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -62,9 +63,7 @@ Coded by importance
|
|||||||
|
|
||||||
- Part request list in PO none of column headings are fetched translations all ??
|
- Part request list in PO none of column headings are fetched translations all ??
|
||||||
|
|
||||||
- 0 ** BIG ISSUE ** Form menu (i.e. workorder form) doesn't allow scroll down so if the screen is small and the items are off page on a laptop (v7 dev) you can't get to the bottom items at all without changing
|
|
||||||
the zoom on the browser to zoom down.
|
|
||||||
Maybe needs an overflow scroll thing set or something
|
|
||||||
|
|
||||||
- 1 Help docs workorder help page shows issue on v7 laptop with some blocks showing with horizontal scroll bars on them (bulleted lists for some reason)
|
- 1 Help docs workorder help page shows issue on v7 laptop with some blocks showing with horizontal scroll bars on them (bulleted lists for some reason)
|
||||||
this sucks, need to avoid that
|
this sucks, need to avoid that
|
||||||
@@ -862,3 +861,4 @@ BUILD 129 CHANGES OF NOTE
|
|||||||
- case 3943 updated the docs
|
- case 3943 updated the docs
|
||||||
- case 3944 updated the docs
|
- case 3944 updated the docs
|
||||||
- case 3945 made change see case
|
- case 3945 made change see case
|
||||||
|
- Added vert scroll to menu when it's too tall for the display (workorder has the longest menu), was not scrollable and completely accessible before on short screen size
|
||||||
@@ -180,13 +180,14 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<v-spacer></v-spacer>
|
<v-spacer></v-spacer>
|
||||||
<!-- <v-menu bottom float-left attach> -->
|
|
||||||
<v-menu float-left>
|
<v-menu float-left>
|
||||||
<template v-slot:activator="{ on }">
|
<template v-slot:activator="{ on }">
|
||||||
<v-btn text icon v-on="on" data-cy="contextmenu">
|
<v-btn text icon v-on="on" data-cy="contextmenu">
|
||||||
<v-icon>$ayiEllipsisV</v-icon>
|
<v-icon>$ayiEllipsisV</v-icon>
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</template>
|
</template>
|
||||||
|
<!-- https://stackoverflow.com/questions/54904746/scrolling-list-in-vuetify -->
|
||||||
<v-list style="max-height: 100vh" class="overflow-y-auto">
|
<v-list style="max-height: 100vh" class="overflow-y-auto">
|
||||||
<template v-for="(item, index) in appBar.menuItems">
|
<template v-for="(item, index) in appBar.menuItems">
|
||||||
<v-subheader v-if="item.header" :key="index">
|
<v-subheader v-if="item.header" :key="index">
|
||||||
|
|||||||
Reference in New Issue
Block a user