change string to upper case
This commit is contained in:
parent
985ba28f71
commit
a3523fea26
1 changed files with 1 additions and 1 deletions
|
|
@ -522,7 +522,7 @@ export const useMainStore = defineStore({
|
||||||
const glassInformation = this.order.damage.glassToReplace;
|
const glassInformation = this.order.damage.glassToReplace;
|
||||||
glassInformation.forEach((glassPiece) => {
|
glassInformation.forEach((glassPiece) => {
|
||||||
const glassPieceObject = {
|
const glassPieceObject = {
|
||||||
name: glassPiece.glassLocation
|
name: glassPiece.glassLocation.toUpperCase()
|
||||||
};
|
};
|
||||||
orderItemsArray.push(glassPieceObject);
|
orderItemsArray.push(glassPieceObject);
|
||||||
manuaGlassNamesArray.push(glassPiece.glassLocation);
|
manuaGlassNamesArray.push(glassPiece.glassLocation);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue