1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00

chore: await so change requests banner shows up after adding release plans changes ()

This commit is contained in:
David Leek 2025-02-19 11:18:10 +01:00 committed by GitHub
parent 2a6487e7e9
commit c938b0fa6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions
frontend/src/component/feature
FeatureStrategy/FeatureStrategyMenu
FeatureView/FeatureOverview/ReleasePlan

View File

@ -84,7 +84,7 @@ export const FeatureStrategyMenu = ({
}; };
const addReleasePlanToChangeRequest = async () => { const addReleasePlanToChangeRequest = async () => {
addChange(projectId, environmentId, { await addChange(projectId, environmentId, {
feature: featureId, feature: featureId,
action: 'addReleasePlan', action: 'addReleasePlan',
payload: { payload: {
@ -92,7 +92,7 @@ export const FeatureStrategyMenu = ({
}, },
}); });
refetchChangeRequests(); await refetchChangeRequests();
setToastData({ setToastData({
type: 'success', type: 'success',

View File

@ -124,7 +124,7 @@ export const ReleasePlan = ({
); );
const onAddRemovePlanChangesConfirm = async () => { const onAddRemovePlanChangesConfirm = async () => {
addChange(projectId, environment, { await addChange(projectId, environment, {
feature: featureName, feature: featureName,
action: 'deleteReleasePlan', action: 'deleteReleasePlan',
payload: { payload: {
@ -132,7 +132,7 @@ export const ReleasePlan = ({
}, },
}); });
refetchChangeRequests(); await refetchChangeRequests();
setToastData({ setToastData({
type: 'success', type: 'success',
@ -143,7 +143,7 @@ export const ReleasePlan = ({
}; };
const onAddStartMilestoneChangesConfirm = async () => { const onAddStartMilestoneChangesConfirm = async () => {
addChange(projectId, environment, { await addChange(projectId, environment, {
feature: featureName, feature: featureName,
action: 'startMilestone', action: 'startMilestone',
payload: { payload: {
@ -152,7 +152,7 @@ export const ReleasePlan = ({
}, },
}); });
refetchChangeRequests(); await refetchChangeRequests();
setToastData({ setToastData({
type: 'success', type: 'success',