minor fixes
This commit is contained in:
parent
b7f7b05e73
commit
eae3eed29b
1 changed files with 2 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue