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

LIMS-1489: Update message when trying to queue containers in uploaded shipments #847

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@
v-model="QUEUEFORUDC"
name="Queue For UDC"
/>
<span v-else-if="shippingSafetyLevel === null">
Cannot queue container until shipment safety level is set
</span>
<span v-else>
Cannot queue containers in {{ shippingSafetyLevel }} shipments
</span>
Expand Down Expand Up @@ -663,7 +666,7 @@ export default {

await this.$store.dispatch('samples/save', containerId)
this.$store.commit('notifications/addNotification', {
message: `New Container created, click <a href=/containers/cid/${containerId}>here</a> to view it`,
message: `New Container created, click <a href=/containers/cid/${containerId}>here</a> to view it. Remember to add sequences and PDBs if needed.`,
level: 'info',
persist: true
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@
@click="onUnQueueContainer"
><i class="fa fa-times" /> Unqueue</a>
</span>
<span v-else-if="shippingSafetyLevel === null">
Cannot queue container until shipment safety level is set
</span>
<span v-else-if="shippingSafetyLevel != 'Green'">
Cannot queue containers in {{ shippingSafetyLevel }} shipments
</span>
Expand Down
Loading