Skip to content

Commit f9b5deb

Browse files
use BSkeleton instead of LoadingSpan for tool help text fetch
1 parent 69da9b3 commit f9b5deb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/src/components/ToolsList/ToolsListItem.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ import {
88
faWrench,
99
} from "@fortawesome/free-solid-svg-icons";
1010
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
11+
import { BSkeleton } from "bootstrap-vue";
1112
import { computed, ref } from "vue";
1213
1314
import { useFormattedToolHelp } from "@/composables/formattedToolHelp";
1415
1516
import GButton from "../BaseComponents/GButton.vue";
16-
import LoadingSpan from "../LoadingSpan.vue";
1717
import GLink from "@/components/BaseComponents/GLink.vue";
1818
import ToolFavoriteButton from "@/components/Tool/Buttons/ToolFavoriteButton.vue";
1919
@@ -141,7 +141,7 @@ const quotedSection = computed(() => (props.section ? `"${props.section}"` : "")
141141
</div>
142142

143143
<div v-if="props.fetching">
144-
<LoadingSpan message="Fetching tool help" />
144+
<BSkeleton />
145145
</div>
146146

147147
<!-- eslint-disable-next-line vue/no-v-html -->

0 commit comments

Comments
 (0)