Skip to content

Commit

Permalink
Merge pull request #385 from R-Sourabh/#384-inventory-channel-ui-label
Browse files Browse the repository at this point in the history
Improved: changed the inventory channel ui label on  publish inventory page(#384)
  • Loading branch information
ymaheshwari1 authored Nov 5, 2024
2 parents b92cb8a + d604377 commit 187e363
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"included": "included",
"Include": "Include {label}",
"Info": "Info",
"Inventory group": "Inventory group",
"Inventory channel": "Inventory channel",
"Job runtime has passed. Please refresh to get the latest job data in order to perform any action.": "Job runtime has passed. Please refresh to get the latest job data in order to perform any action.",
"Jobs sequence updated successfully": "Jobs sequence updated successfully",
"Keep editing": "Keep editing",
Expand Down
2 changes: 1 addition & 1 deletion src/views/InventoryChannels.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@

<ion-item lines="full">
<ion-icon slot="start" :icon="albumsOutline"/>
<ion-select :label="translate('Inventory group')" v-model="job.runtimeData.facilityGroupId" :disabled="job.statusId === 'SERVICE_PENDING'" :placeholder="translate('Select')" interface="popover">
<ion-select :label="translate('Inventory channel')" v-model="job.runtimeData.facilityGroupId" :disabled="job.statusId === 'SERVICE_PENDING'" :placeholder="translate('Select')" interface="popover">
<ion-select-option v-for="channel in inventoryChannels" :key="channel.facilityGroupId" :value="channel.facilityGroupId">{{ channel.facilityGroupName ? channel.facilityGroupName : channel.facilityGroupId }}</ion-select-option>
</ion-select>
</ion-item>
Expand Down

0 comments on commit 187e363

Please sign in to comment.