Skip to content

Commit

Permalink
Merge branch 'add_parameter_panel_area' into hiho-counter-pr-372811ca
Browse files Browse the repository at this point in the history
  • Loading branch information
sigprogramming authored Jan 22, 2025
2 parents 1436c64 + 7662a2f commit 8e05527
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/components/Sing/SequencerDummyGrid.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="sequencer-grid"></div>
<div class="sequencer-dummy-grid"></div>
</template>

<script setup lang="ts">
Expand All @@ -11,15 +11,14 @@ if (injectedValue == undefined) {
throw new Error("injectedValue is undefined.");
}
const gridWidth = injectedValue.gridWidth;
const gridHeight = injectedValue.gridHeight;
const { gridWidth, gridHeight } = injectedValue;
</script>

<style scoped lang="scss">
@use "@/styles/variables" as vars;
@use "@/styles/colors" as colors;
.sequencer-grid {
.sequencer-dummy-grid {
display: block;
width: v-bind("`${gridWidth}px`");
height: v-bind("`${gridHeight}px`");
Expand Down

0 comments on commit 8e05527

Please sign in to comment.