Skip to content

Commit

Permalink
banners to notify provider when viewing PCF while CR in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
jenbeckett committed Nov 16, 2023
1 parent 0a2afab commit b9392bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<v-container>
<span>
<v-row>
<v-card width="100%" class="mx-3 my-10" v-if="isSomeChangeRequestActive()">
<v-card width="100%" class="mx-3 my-10" v-if="isSomeChangeRequestActive() && isReadonly">
<v-row>
<v-col class="py-0">
<v-card-title class="py-1 noticeAlert">
Expand All @@ -14,12 +14,12 @@
mdi-alert-octagon
</v-icon>
</span>
You have a change request for the funding term still in progress.
You have a change request in progress.
</v-card-title>
</v-col>
</v-row>
<v-card-text>
You have a change request in progress. We will complete the assessment of your Program Confirmation Form once your change has been processed.<br><br>
We will complete the assessment of your Program Confirmation Form once your change has been processed.<br><br>
<br>
</v-card-text>
</v-card>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h3>Organization Information</h3>
</v-card-title>
<v-row>
<v-card width="100%" class="mx-3 my-10" v-if="isSomeChangeRequestActive()">
<v-card width="100%" class="mx-3 my-10" v-if="isSomeChangeRequestActive() && isReadonly">
<v-row>
<v-col class="py-0">
<v-card-title class="py-1 noticeAlert">
Expand Down Expand Up @@ -151,6 +151,7 @@ import organizationMixin from '@/mixins/organizationMixin';
import { mapGetters, mapState } from 'vuex';
import { ORGANIZATION_PROVIDER_TYPES } from '@/utils/constants';
import {isAnyChangeRequestActive } from '@/utils/common';
import { isReadonly } from 'vue';
export default {
Expand Down

0 comments on commit b9392bc

Please sign in to comment.