Skip to content

Commit e7de855

Browse files
authored
Merge pull request #5622 from bcgov/main
16.0 Main to Dev
2 parents 13e201a + 1e18dd6 commit e7de855

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/request-management-api-cd.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,15 @@ env:
2525

2626
jobs:
2727
request-management-api-cd-by-push:
28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-24.04
2929

3030
if: github.event_name == 'push' && github.repository == 'bcgov/foi-flow'
3131
steps:
32+
- name: Install oc
33+
uses: redhat-actions/oc-installer@v1
34+
with:
35+
oc_version: '4.6'
36+
3237
- uses: actions/checkout@v2
3338
- name: Set ENV variables
3439
id: set-variable

forms-flow-web/src/components/FOI/FOIRequest/AxisDetails/AxisDetails.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ const AxisDetails = React.memo(({
7373
updateValidation(helperText);
7474
if (isValid) {
7575
checkDuplicatedAxisID(inputValue);
76+
}else {
77+
handleAxisDetailsValue("", FOI_COMPONENT_CONSTANTS.AXIS_REQUEST_ID);
7678
}
7779
} else {
7880
updateValidation("");
@@ -90,6 +92,7 @@ const AxisDetails = React.memo(({
9092
if (!err) {
9193
if (data && data.indexOf("Axis Id exists") >= 0) {
9294
updateValidation("Request already exists");
95+
handleAxisDetailsValue("", FOI_COMPONENT_CONSTANTS.AXIS_REQUEST_ID);
9396
} else {
9497
updateValidation("");
9598
handleAxisDetailsValue(inputValue, FOI_COMPONENT_CONSTANTS.AXIS_REQUEST_ID);
@@ -100,7 +103,7 @@ const AxisDetails = React.memo(({
100103
updateValidation("Error checking request ID");
101104
}
102105
}));
103-
}, 500);
106+
}, 300);
104107

105108
const syncWithAxis = () => {
106109
dispatch(checkDuplicateAndFetchRequestDataFromAxis(axisRequestId, false, saveRequestObject,(err, data) => {

forms-flow-web/src/components/FOI/FOIRequest/MinistryReview/RequestHeader.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ const RequestHeader = React.memo(({
115115
type="consult"
116116
requestDetails={requestDetails}
117117
isActive={requestDetails.isconsultflag}
118+
showFlag={requestDetails.isconsultflag === true}
118119
isDisabled={true}
119120
/>
120121
{/* <RequestFlag

request-management-api/request_api/services/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# limitations under the License.
1414
"""Exposes all of the Services used in the API."""
1515

16-
from .fee_service import FeeService
16+
from .fee_service import FeeService

0 commit comments

Comments
 (0)