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 (#9328)
This commit is contained in:
parent
2a6487e7e9
commit
c938b0fa6c
frontend/src/component/feature
FeatureStrategy/FeatureStrategyMenu
FeatureView/FeatureOverview/ReleasePlan
@ -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',
|
||||||
|
@ -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',
|
||||||
|
Loading…
Reference in New Issue
Block a user