Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
<v-btn
:icon="floated ? 'mdi-balloon' : 'mdi-view-grid-outline'"
variant="text"
density="compact"
data-test="float-screen-icon"
:aria-label="floated ? 'Unfloat Screen' : 'Float Screen'"
@click="floatScreen"
Expand All @@ -73,6 +74,7 @@
<v-btn
icon="mdi-arrow-up"
variant="text"
density="compact"
data-test="up-screen-icon"
aria-label="Move Screen Up"
@click="upScreen"
Expand All @@ -91,6 +93,7 @@
<v-btn
icon="mdi-arrow-down"
variant="text"
density="compact"
data-test="down-screen-icon"
aria-label="Move Screen Down"
@click="downScreen"
Expand All @@ -115,6 +118,7 @@
v-else
icon="mdi-window-maximize"
variant="text"
density="compact"
data-test="maximize-screen-icon"
aria-label="Maximize Screen"
@click="minMaxTransition"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,10 @@ export default {
) {
// Our dates have / rather than - which results in an invalid date on old browsers
// when they call new Date(value)
value = value.replaceAll('/', '-')
return this.formatUtcToLocal(new Date(value), this.appliedTimeZone)
value = this.formatUtcToLocal(
new Date(value.replaceAll('/', '-')),
this.appliedTimeZone,
)
}
return this.formatValueBase(value, this.formatString)
},
Expand Down
Loading