Skip to content

Commit d78bd41

Browse files
committed
content updates
1 parent fb09e5a commit d78bd41

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

vue-frontend/warehouse-frontend/src/views/MoveAssetsPage.vue

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -279,15 +279,15 @@ export default {
279279
<div class="modal-dialog modal-dialog-centered">
280280
<div class="modal-content">
281281
<div class="modal-header">
282-
<h5 class="modal-title">Scan parent</h5>
282+
<h5 class="modal-title">Scan location</h5>
283283
</div>
284284

285285
<div class="modal-body">
286-
<img src="../assets/parent-scan.png" alt="Parent Id" class="logo">
287-
<p class="text-muted">Scan the barcode or enter the ID of the pallet that you’ll be adding boxes to.</p>
286+
<img src="../assets/location-scan.png" alt="Parent Id" class="logo">
287+
<p class="text-muted">Scan the barcode or enter the location ID of where the assets are being moved to.</p>
288288

289289
<div class="mb-3">
290-
<label for="parentId" class="form-label">Parent ID</label>
290+
<label for="parentId" class="form-label">Location ID</label>
291291
<input type="text" class="form-control" id="parentId" v-model="parentId" ref="parentId"
292292
@keyup.enter="scanParentId">
293293
</div>
@@ -325,6 +325,7 @@ export default {
325325
<div class="col-md-9">
326326
<div class="card p-3 mt-3">
327327
<h4 style="color: #075976">Transactions</h4>
328+
<p style="padding-bottom: 5px;">Scan an asset to get started</p>
328329
<div class="col-md-6" style="padding-bottom: 25px;">
329330
<label for="assetId" class="form-label">Asset ID</label>
330331
<div class="d-flex">
@@ -399,8 +400,8 @@ export default {
399400

400401
<!-- Inventory List -->
401402
<div class="card p-3 mt-5">
402-
<h4 style="color: #075976">Inventory List</h4>
403-
<p style="padding-bottom: 5px;">Assets assigned to the parent will display below.</p>
403+
<h4 style="color: #075976">Completed asset moves</h4>
404+
<p style="padding-bottom: 5px;">Assets that have been successfully moved will be listed below.</p>
404405
<table class="table">
405406
<thead>
406407
<tr>
@@ -571,7 +572,7 @@ thead {
571572
.logo {
572573
display: block;
573574
margin: 0 auto 15px;
574-
width: 48px;
575+
height: 48px;
575576
}
576577
577578
.title {

vue-frontend/warehouse-frontend/src/views/PackingPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ export default {
329329
<label for="assetId" class="form-label">Asset ID</label>
330330
<div class="d-flex">
331331
<input type="text" class="form-control" id="assetId" v-model="assetId" ref="assetId"
332-
@keyup.enter="scanAsset" @blur="ensureFocus" style="width: 460px;">
332+
@keyup.enter="scanAsset" @blur="ensureFocus" style="width: 460px;" placeholder="Scan or enter asset ID">
333333
<button class="btn btn-secondary" @click="scanAsset" style="margin-left: 8px; width: 60px; height: 38px;">
334334
<span v-if="isAssetScanning" class="spinner-border spinner-border-sm"></span>
335335
<span v-else>Add</span>

0 commit comments

Comments
 (0)