Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AMP-2532: #531

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions src/components/entity/EntityList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
</div>
<div
class="col-6 text-left form-group"
v-if="baseUrl === 'unit'"
v-if="baseUrl === 'unit' && unitEntity.currentUnit"
>
<label>Task Manager:</label>
<select
Expand Down Expand Up @@ -836,10 +836,6 @@
"
v-if="purpose"
>
<div class="col-3" v-if="baseUrl == 'unit'">
<label>Task Manager</label>
<p class="mb-0">{{ elem.taskManager }}</p>
</div>
<div class="col-2" v-if="baseUrl == 'collection'">
<label>Source Name</label>
<p class="mb-0">{{ elem.externalSource }}</p>
Expand Down Expand Up @@ -1509,7 +1505,7 @@ export default {
async mounted() {
const self = this;

console.log ("EntityList.mounted(): showLoader = " + this.showLoader);
console.log ("EntityList.mounted start: showLoader = " + this.showLoader);

// retrieve configProperties if not yet populated
if (!self.configProperties || Object.keys(self.configProperties).length === 0) {
Expand Down Expand Up @@ -1547,6 +1543,7 @@ export default {
}

this.showLoader = false;
console.log ("EntityList.mounted end: showLoader = " + this.showLoader);
},
};
</script>
Expand Down
Loading