minor fixes

This commit is contained in:
Jörn-Michael Miehe 2023-01-17 18:03:45 +00:00
parent b7f7b05e73
commit eae3eed29b

View file

@ -19,8 +19,8 @@
:height="preview_rectangle.height"
/>
<rect
v-for="rect in rectangles"
:key="rect.left"
v-for="(rect, index) in rectangles"
:key="'rect' + index"
:x="rect.left"
:y="rect.top"
:width="rect.width"
@ -115,7 +115,6 @@ export default class CalendarImage extends Vue {
<style lang="scss" scoped>
div#container {
position: relative;
max-height: 100%;
user-select: none;
img#background {