-
Notifications
You must be signed in to change notification settings - Fork 24
PSP-10194 : Property information without PIN/PID #4881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
eddherrera
commented
Jul 4, 2025
Pending unit tests |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
@eddherrera - the frontend code is not compiling. Please fix.
|
<LtsaPlanTabView | ||
spcpData={composedPropertyState.spcpWrapper?.response} | ||
ltsaRequestedOn={composedPropertyState.spcpWrapper?.requestedOn} | ||
loading={composedPropertyState.ltsaWrapper?.loading ?? false} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is using the loading indicator from the wrong property (it seems to me). Shouldn't it be like the following instead?
loading={composedPropertyState.ltsaWrapper?.loading ?? false} | |
loading={composedPropertyState.spcpWrapper?.loading ?? false} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, good catch. updated.
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
1 similar comment
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
<> | ||
<LoadingBackdrop show={loading} parentScreen={true} /> | ||
|
||
{!loading && planNumber && !spcpData ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
{!loading && planNumber && !spcpData ? ( | |
{!loading && exists(planNumber) && !exists(spcpData) ? ( |
enableReinitialize={true} | ||
> | ||
<StyledForm> | ||
{ltsaRequestedOn && ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit:
{ltsaRequestedOn && ( | |
{exists(ltsaRequestedOn) && ( |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
1 similar comment
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
|
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |
See CodeCov Report Here: https://app.codecov.io/github/bcgov/psp/pull/4881 |