change string to upper case

This commit is contained in:
Katie Kroell 2023-11-01 09:36:04 -04:00
parent 985ba28f71
commit a3523fea26

View file

@ -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);