@@ -15,6 +15,7 @@ import {
1515import { itemDiscountEligible } from '../../utils/helpers'
1616import { quoteMessages , statusMessages } from '../../utils/messages'
1717import { LabelByStatusMap } from '../../utils/status'
18+ import styles from './QuoteTable.css'
1819
1920const QuoteTable = ( {
2021 isNewQuote,
@@ -55,6 +56,7 @@ const QuoteTable = ({
5556 < Table
5657 totalizers = { totalizers }
5758 fullWidth
59+ className = { styles . quoteTable }
5860 schema = { {
5961 properties : {
6062 imageUrl : {
@@ -118,7 +120,7 @@ const QuoteTable = ({
118120 sellingPrice : {
119121 title : formatMessage ( quoteMessages . quotePrice ) ,
120122 headerRight : true ,
121- width : 120 ,
123+ width : 150 ,
122124 cellRenderer : ( {
123125 cellData : sellingPrice ,
124126 rowData : { id : itemId , listPrice, error } ,
@@ -177,7 +179,7 @@ const QuoteTable = ({
177179 unitMultiplier : {
178180 title : formatMessage ( quoteMessages . unitMultiplier ) ,
179181 headerRight : true ,
180- width : 80 ,
182+ width : 180 ,
181183 cellRenderer : ( { rowData : { id } } : any ) => {
182184 const hasMultipliers =
183185 unitMultipliers && Object . keys ( unitMultipliers ) . length > 0
@@ -203,7 +205,7 @@ const QuoteTable = ({
203205 : ''
204206
205207 return (
206- < span className = "tr w-100" >
208+ < div className = "tr w-100" >
207209 < FormattedCurrency
208210 value = {
209211 rowData . sellingPrice
@@ -212,10 +214,10 @@ const QuoteTable = ({
212214 : 0
213215 }
214216 />
215- </ span >
217+ </ div >
216218 )
217219 } ,
218- width : 100 ,
220+ width : 150 ,
219221 } ,
220222 } ,
221223 } }
0 commit comments