Merge branch 'fix-location-details-field' into 'development'
Fix location details field See merge request saburly/wiaas/new-wiaas!74
This commit was merged in pull request #74.
This commit is contained in:
@@ -18,7 +18,6 @@ class Wiaas_Support_Api {
|
||||
'methods' => 'POST',
|
||||
'callback' => array(__CLASS__, 'send_support_email'),
|
||||
'permission_callback' => 'is_user_logged_in',
|
||||
//this.props.order, this.props.order.packages, this.props.supportText
|
||||
'args' => array(
|
||||
'id' => array(
|
||||
'description' => __('Order ID.', 'wiaas'),
|
||||
|
||||
@@ -80,7 +80,7 @@ class OrderInfo extends Component {
|
||||
<Col xl="2">
|
||||
<div>
|
||||
<div className="subtitle"><h6>{orderTexts.labels.REFERENCE}:</h6></div>
|
||||
<span>{orderInfo.reference || '-'}</span>
|
||||
<span className="reference">{orderInfo.reference || '-'}</span>
|
||||
</div>
|
||||
<div>
|
||||
<div className="subtitle"><h6>{orderTexts.labels.BID}:</h6></div>
|
||||
@@ -139,7 +139,7 @@ class OrderInfo extends Component {
|
||||
<Col xl="2">
|
||||
<div>
|
||||
<div className="subtitle"><h6>{orderTexts.labels.PROJECT}:</h6></div>
|
||||
<span>{orderInfo.projectName || '-'}</span>
|
||||
<span className="project-name">{orderInfo.projectName || '-'}</span>
|
||||
</div>
|
||||
|
||||
<div className="terms-link">
|
||||
|
||||
@@ -7,6 +7,14 @@ $link-line-height: 1.5rem;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.reference{
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.project-name{
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.info-color {
|
||||
margin-top: 0.2rem;
|
||||
padding-left: 0.2rem;
|
||||
|
||||
Reference in New Issue
Block a user