Merge branch 'develop' into 'devops-staging'

Develop

See merge request empatnusabangsa/ppob/ppob-frontend!95
This commit is contained in:
ajat sudrajat 2022-01-27 02:44:10 +00:00
commit ab22658622
2 changed files with 24 additions and 19 deletions

View File

@ -6,9 +6,10 @@ metadata:
annotations: annotations:
kubernetes.io/ingress.class: "traefik" kubernetes.io/ingress.class: "traefik"
cert-manager.io/cluster-issuer: letsencrypt-prod cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.middlewares: empatnusabangsa-production-redirect-https@kubernetescrd
spec: spec:
rules: rules:
- host: "wndsolutions.id" - host: "www.wndsolutions.id"
http: http:
paths: paths:
- pathType: Prefix - pathType: Prefix
@ -20,5 +21,5 @@ spec:
number: 80 number: 80
tls: tls:
- hosts: - hosts:
- "wndsolutions.id" - "www.wndsolutions.id"
secretName: wndsolutions-id-tls secretName: www-wndsolutions-id-tls

View File

@ -91,7 +91,7 @@ export const Konfirmasi = observer(() => {
{ {
title: "Foto Toko", title: "Foto Toko",
render: (text, record) => render: (text, record) =>
record.user_detail?.image_store !== "\"\"" ? ( record.user_detail?.image_store !== '""' ? (
<Button <Button
onClick={async () => { onClick={async () => {
setToko(record); setToko(record);
@ -378,6 +378,7 @@ export const Konfirmasi = observer(() => {
> >
Foto Identitas Foto Identitas
</Button> </Button>
{item.user_detail?.image_store !== "\"\"" ? (
<Button <Button
style={ style={
item.is_active === true item.is_active === true
@ -393,6 +394,9 @@ export const Konfirmasi = observer(() => {
> >
Foto Toko Foto Toko
</Button> </Button>
) : (
""
)}
</p> </p>
</div> </div>
} }