Skip to content

Commit

Permalink
Component renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
hujambo-dunia committed Apr 5, 2024
1 parent 40c3189 commit a8cc845
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions client/src/components/DatasetInformation/DatasetError.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
:job-id="dataset.creating_job"
@error="onError">
<div v-if="!loading">
<SelfReportingError
<UserReportingError
:result-messages="resultMessages"
:show-form="showForm"
:message="message"
Expand All @@ -37,15 +37,15 @@ import { useUserStore } from "@/stores/userStore";
import { sendErrorReport } from "./services";
import SelfReportingError from "../Common/SelfReportingError.vue";
import UserReportingError from "../Common/UserReportingError.vue";
library.add(faBug);
export default {
components: {
DatasetProvider,
JobDetailsProvider,
SelfReportingError,
UserReportingError,
},
props: {
datasetId: {
Expand Down
6 changes: 3 additions & 3 deletions client/src/components/Tool/ToolForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</div>
<b-modal v-model="showError" size="sm" :title="errorTitle | l" scrollable ok-only>
{{ /* TODO integrate submit-prop into larger form */ }}
<SelfReportingError
<UserReportingError
:result-messages="[]"
:show-form="'true'"
:message="''"
Expand Down Expand Up @@ -126,7 +126,7 @@ import { getToolFormData, submitJob, updateToolFormData } from "./services";
import ToolCard from "./ToolCard";
import { allowCachedJobs } from "./utilities";
import SelfReportingError from "../Common/SelfReportingError.vue";
import UserReportingError from "../Common/UserReportingError.vue";
import FormSelect from "@/components/Form/Elements/FormSelect.vue";
export default {
Expand All @@ -140,7 +140,7 @@ export default {
ToolEntryPoints,
ToolRecommendation,
Heading,
SelfReportingError,
UserReportingError,
},
props: {
id: {
Expand Down

0 comments on commit a8cc845

Please sign in to comment.