Skip to content

Commit

Permalink
LIMS-1489: Update message when trying to queue containers in uploaded…
Browse files Browse the repository at this point in the history
… shipments (#847)

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

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

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

---------

Co-authored-by: Mark Williams <[email protected]>
  • Loading branch information
ndg63276 and Mark Williams authored Oct 22, 2024
1 parent 53ae0bb commit 4b4ec37
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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

0 comments on commit 4b4ec37

Please sign in to comment.