From a3523fea26045043af36e35cd2be3bc5ed02951d Mon Sep 17 00:00:00 2001 From: Katie Kroell Date: Wed, 1 Nov 2023 09:36:04 -0400 Subject: [PATCH] change string to upper case --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 03541083..db3c739e 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -522,7 +522,7 @@ export const useMainStore = defineStore({ const glassInformation = this.order.damage.glassToReplace; glassInformation.forEach((glassPiece) => { const glassPieceObject = { - name: glassPiece.glassLocation + name: glassPiece.glassLocation.toUpperCase() }; orderItemsArray.push(glassPieceObject); manuaGlassNamesArray.push(glassPiece.glassLocation);