Skip to content

Commit

Permalink
Fix unregistered component in test for Details.vue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Nov 19, 2024
1 parent 7dba8b3 commit fc98086
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions client/src/components/Toolshed/InstalledList/Details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<div v-if="error" class="alert alert-danger" show>{{ error }}</div>
<div v-else>
<span v-if="loading">
<b-card>
<BCard>
<LoadingSpan message="Loading installed repository details" />
</b-card>
</BCard>
</span>
<div v-else>
<RepositoryDetails :repo="toolshedRepository" :toolshed-url="repo.tool_shed_url" />
Expand All @@ -14,6 +14,7 @@
</div>
</template>
<script>
import { BCard } from "bootstrap-vue";
import LoadingSpan from "components/LoadingSpan";
import { getAppRoot } from "onload/loadConfig";
Expand All @@ -23,6 +24,7 @@ import RepositoryDetails from "../RepositoryDetails/Index.vue";
export default {
components: {
BCard,
LoadingSpan,
RepositoryDetails,
},
Expand Down

0 comments on commit fc98086

Please sign in to comment.