Skip to content

Commit

Permalink
update error message shown when add domain fails (#3616)
Browse files Browse the repository at this point in the history
  • Loading branch information
amiraabouhadid authored Nov 11, 2024
1 parent a004c81 commit 1ea3613
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/playground/src/components/manage_gateway_dialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,8 @@ export default {
suggestName();
layout.value.setStatus("success", "Successfully deployed gateway.");
} catch (error) {
layout.value.setStatus("failed", normalizeError(error, "Something went wrong."));
errorMessage.value = "Failed to add domain";
layout.value.setStatus("failed", normalizeError(errorMessage.value, "Something went wrong."));
}
}
Expand Down

0 comments on commit 1ea3613

Please sign in to comment.