Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 59c90ea175 | |||
| 9838fc948e | |||
| cb4c741a90 | |||
| bba38affae | |||
| 9468793d91 | |||
| 44224e23ff | |||
| 5b926300ae | |||
| 9125730d2b | |||
| 00baa0b9bf |
Binary file not shown.
|
After Width: | Height: | Size: 7.5 KiB |
@@ -38,10 +38,10 @@ export default function AccPWDReset() {
|
||||
return verifyResetToken(fields)
|
||||
},
|
||||
onSuccess: (res) => {
|
||||
// console.log('res', res)
|
||||
// if(res.data.resultCode != '0'){
|
||||
// throw({message: res?.data?.resultDescription})
|
||||
// }
|
||||
// console.log('res', res.data)
|
||||
if(res.data.resultCode != '0' || !res?.data?.pending_uid){
|
||||
throw({message: res?.data?.resultDescription})
|
||||
}
|
||||
// setUser({user:'testaccount', ...res.data})
|
||||
setUser(res.data)
|
||||
},
|
||||
@@ -76,7 +76,7 @@ export default function AccPWDReset() {
|
||||
const handleCompletePWDReset = (values) => {
|
||||
let reqData = {
|
||||
reset_token: token,
|
||||
reset_uid: "4733e96b-7031-4684-bec3-f63da4417707",
|
||||
reset_uid: user?.pending_uid,
|
||||
new_password: values.password,
|
||||
}
|
||||
resetPWD.mutate(reqData)
|
||||
|
||||
@@ -42,11 +42,11 @@ export default function Products() {
|
||||
:
|
||||
<div className="row m-b-20">
|
||||
{products && products.map((product, index) => (
|
||||
<div key={product.uid+index} className="col-xxs-6 col-xl-4 col-xxl-6 mb-2 mb-xxl-0 ">
|
||||
<div key={product.uid+index} className={`col-xxs-6 col-xl-4 col-xxl-6 mb-2 mb-xxl-0`}>
|
||||
<Link to={productPath(product?.product_id)} >
|
||||
<div className="d-flex align-items-center extraProductCard">
|
||||
<div className={`d-flex align-items-center extraProductCard ${product?.icon_style}`} >
|
||||
<div className="icon-container img-icon m-r-20 bg-light-gray rounded">
|
||||
<i className="fa fa-cart-plus text-primary"></i>
|
||||
<i className={`fa ${product?.product_icon} text-primary`}></i>
|
||||
</div>
|
||||
<div className="report-details">
|
||||
<p>{product?.status_text}</p>
|
||||
|
||||
@@ -97,7 +97,9 @@ export default function ProductActive({productData}){
|
||||
<div className="card-header">
|
||||
<div className="card-heading d-flex justify-content-between">
|
||||
<h4 className="card-title">{externalUrl}</h4>
|
||||
<button type="button" onClick={()=>iframe.current.src += ''} className="btn btn-primary">IC</button>
|
||||
<button type="button" onClick={()=>iframe.current.src += ''} className="btn">
|
||||
<img src={getImage('refresh.png')} style={{width: '30px', height: 'auto'}} alt='refresh page' />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="card-body">
|
||||
|
||||
+8
-1
@@ -90,7 +90,14 @@ $today-highlight-bg: #fcf8e3;
|
||||
$btn-bg: #8e54e9;
|
||||
$btn-border: #8e54e9;
|
||||
$event-padding: 10px;
|
||||
|
||||
.manage{
|
||||
background-color:lightgreen !important;
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
.creating{
|
||||
background-color: lightyellow !important;
|
||||
border-radius: 5px !important;
|
||||
}
|
||||
.billing{
|
||||
background-color: darkgoldenrod;
|
||||
color: white;
|
||||
|
||||
Reference in New Issue
Block a user