Skip to content

Commit

Permalink
replace div with template
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Apr 15, 2022
1 parent ace0f68 commit 1a5002f
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/LayoutScript.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<template>
<div class="fill-height">
<div
v-if="nextlineState == 'running'"
class="fill-height align-stretch pa-0"
>
<div style="height: 100%">
<template v-if="nextlineState == 'running'">
<div v-if="layout == 'grid'" class="g-grid-container">
<code-exec
:traceId="traceId"
Expand All @@ -27,7 +24,7 @@
</v-tab-item>
</v-tabs-items>
</div>
</div>
</template>
<script-editor v-else v-model="editing"></script-editor>
</div>
</template>
Expand Down

0 comments on commit 1a5002f

Please sign in to comment.