From dccaa9350a239b3a9336da3aeffaf2e2e3f3480d Mon Sep 17 00:00:00 2001 From: mlm483 <128052931+mlm483@users.noreply.github.com> Date: Tue, 10 Sep 2024 17:43:04 -0400 Subject: [PATCH 01/98] [BI-2304] - updated getEntryNumber --- src/breeding-insight/utils/GermplasmUtils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/breeding-insight/utils/GermplasmUtils.ts b/src/breeding-insight/utils/GermplasmUtils.ts index 87f911fbd..5415fe46d 100644 --- a/src/breeding-insight/utils/GermplasmUtils.ts +++ b/src/breeding-insight/utils/GermplasmUtils.ts @@ -48,8 +48,7 @@ export class GermplasmUtils { static getEntryNumber(germplasm: Germplasm, referenceId: string | undefined): string | undefined { if (germplasm.additionalInfo) { - return referenceId ? germplasm.additionalInfo.listEntryNumbers[referenceId] : - germplasm.additionalInfo.importEntryNumber; + return germplasm.additionalInfo.importEntryNumber; } return ""; } From 5d237519bb8176ac07956129d8ab6ac6ccc3e0e4 Mon Sep 17 00:00:00 2001 From: HMS17 Date: Wed, 11 Sep 2024 16:22:35 -0400 Subject: [PATCH 02/98] [BI-2129] - Accessibility: Germplasm Table Fixes --- src/components/germplasm/GermplasmLink.vue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/germplasm/GermplasmLink.vue b/src/components/germplasm/GermplasmLink.vue index 7a9e1d4e7..0e795550f 100644 --- a/src/components/germplasm/GermplasmLink.vue +++ b/src/components/germplasm/GermplasmLink.vue @@ -16,10 +16,10 @@ --> @@ -43,7 +43,6 @@ export default class GermplasmLink extends Vue { private germplasmUUID!: String; @Prop() private germplasmGID!: String; - } From 8cb792c13494c6b06cb9278178543cdf2630f800 Mon Sep 17 00:00:00 2001 From: rob-ouser-bi Date: Wed, 18 Sep 2024 14:11:11 +0000 Subject: [PATCH 03/98] [autocommit] bumping build number --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e876f7d0f..d838311d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bi-web", - "version": "v0.10.0+731", + "version": "v0.10.0+737", "private": true, "scripts": { "build": "node $npm_package_config_task_path/build.js --dev-audit-level=critical --prod-audit-level=none", @@ -96,5 +96,5 @@ "vue-cli-plugin-axios": "0.0.4", "vue-template-compiler": "^2.7.14" }, - "versionInfo": "https://github.com/Breeding-Insight/bi-web/commit/1a514f677b9488cec2cd0202aeb30c2a5ea9a0e3" + "versionInfo": "https://github.com/Breeding-Insight/bi-web/commit/048c7b4e4be0eee396c474f98645cb1697d672f5" } From a93cabe85664a639f724d2a4d4d40ccebfdbcd15 Mon Sep 17 00:00:00 2001 From: David Randolph Phillips Date: Wed, 11 Sep 2024 15:33:17 -0400 Subject: [PATCH 04/98] [BI-2255] seperated 'editable' logic (based on user-rights) and 'currentTraitEditable' logic (based on if trait is already used in an experiment). --- src/components/ontology/OntologyTable.vue | 3 ++- src/components/trait/TraitDetailPanel.vue | 7 +++++-- src/components/trait/forms/BaseTraitForm.vue | 6 ++++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/components/ontology/OntologyTable.vue b/src/components/ontology/OntologyTable.vue index b2b58681a..35b255f7f 100644 --- a/src/components/ontology/OntologyTable.vue +++ b/src/components/ontology/OntologyTable.vue @@ -154,7 +154,8 @@ v-bind:entity-options="entityOptions" v-bind:attribute-options="attributeOptions" v-bind:edit-active="traitSidePanelState.editActive" - v-bind:editable="$ability.can('update', 'Trait') && currentTraitEditable" + v-bind:editable="$ability.can('update', 'Trait')" + v-bind:currentTraitEditable="currentTraitEditable" v-bind:loading-editable="loadingTraitEditable" v-bind:edit-form-state="traitSidePanelState.dataFormState" v-bind:client-validations="traitValidations" diff --git a/src/components/trait/TraitDetailPanel.vue b/src/components/trait/TraitDetailPanel.vue index eb0fe2fdf..302584eba 100644 --- a/src/components/trait/TraitDetailPanel.vue +++ b/src/components/trait/TraitDetailPanel.vue @@ -185,12 +185,11 @@ -