Skip to content

Commit

Permalink
Merge pull request #138 from Breeding-Insight/feature/BI-1157
Browse files Browse the repository at this point in the history
[BI-1157] Allow for imports to not be connected to a program
  • Loading branch information
Chris Tucker authored Oct 29, 2021
2 parents e6e6f4c + c611ef8 commit b3bde35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/breeding-insight/service/ImportService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ImportService {
return importMapping;
} catch (e) {
if (e.response && e.response.status === 409) {
e.errorMessage = this.mappingNameExists;
e.errorMessage = e.response.statusText;
} else {
e.errorMessage = e.response.statusText;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/import/BrAPIImporter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</template>
<BasicInputField
v-bind:field-name="'Import Mapping Name'"
v-bind:field-help="'This is the name of the import mapping users will start when importing a file'"
v-bind:field-help="'This is the name of the import mapping users will start when importing a file. Reserved import names: Germplasm.'"
v-bind:value="mapping.name"
v-on:input="mapping.name = $event"
/>
Expand Down

0 comments on commit b3bde35

Please sign in to comment.