Skip to content

Commit

Permalink
Apply fixes to adhere to more modern eslint configs
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Nov 17, 2023
1 parent 4a975cf commit fa71ea3
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions client/src/components/Dataset/DatasetView.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { computed } from "vue";
import { BTab, BTabs } from "bootstrap-vue";
import { computed } from "vue";
import DatasetAttributes from "@/components/DatasetInformation/DatasetAttributes.vue";
import DatasetDetails from "@/components/DatasetInformation/DatasetDetails.vue";
Expand All @@ -24,26 +24,26 @@ const displayUrl = computed(() => `/datasets/${props.datasetId}/display/?preview
<code>More toplevel details here</code>
</header>
<div class="dataset-tabs h-100">
<b-tabs pills card>
<b-tab title="Preview" active class="h-100">
<BTabs pills card>
<BTab title="Preview" active class="h-100">
<iframe
:src="displayUrl"
title="galaxy dataset display frame"
class="center-frame h-100"
width="100%"
height="100%"
frameborder="0"></iframe>
</b-tab>
<b-tab title="Details">
<dataset-details :dataset-id="datasetId" />
</b-tab>
<b-tab title="Visualize">
<visualizations-list :dataset-id="datasetId" />
</b-tab>
<b-tab title="Edit">
<dataset-attributes :dataset-id="datasetId" />
</b-tab>
</b-tabs>
</BTab>
<BTab title="Details">
<DatasetDetails :dataset-id="datasetId" />
</BTab>
<BTab title="Visualize">
<VisualizationsList :dataset-id="datasetId" />
</BTab>
<BTab title="Edit">
<DatasetAttributes :dataset-id="datasetId" />
</BTab>
</BTabs>
</div>
</div>
</template>
Expand Down

0 comments on commit fa71ea3

Please sign in to comment.