fix: add parent containers for codemirror instances

This commit is contained in:
nivedin
2024-02-21 21:53:27 +05:30
committed by Andrew Bastin
parent 6a65eb03e7
commit e6cc235532
3 changed files with 9 additions and 7 deletions

View File

@@ -44,11 +44,9 @@
/> />
</div> </div>
</div> </div>
<div <div v-show="!previewEnabled" class="h-full">
v-show="!previewEnabled" <div ref="htmlResponse" class="flex flex-1 flex-col"></div>
ref="htmlResponse" </div>
class="flex flex-1 flex-col"
></div>
<iframe <iframe
v-show="previewEnabled" v-show="previewEnabled"
ref="previewFrame" ref="previewFrame"

View File

@@ -35,7 +35,9 @@
/> />
</div> </div>
</div> </div>
<div ref="rawResponse" class="flex flex-1 flex-col"></div> <div class="h-full">
<div ref="rawResponse" class="flex flex-1 flex-col"></div>
</div>
</div> </div>
</template> </template>

View File

@@ -35,7 +35,9 @@
/> />
</div> </div>
</div> </div>
<div ref="xmlResponse" class="flex flex-1 flex-col"></div> <div class="h-full">
<div ref="xmlResponse" class="flex flex-1 flex-col"></div>
</div>
</div> </div>
</template> </template>