CE-1123 update exception status to be number (for qfc change)

This commit is contained in:
2024-04-15 12:52:59 -05:00
parent 4339f74c07
commit 731eab7136
7 changed files with 15 additions and 15 deletions

View File

@ -119,7 +119,7 @@ export default function DataBagViewer({dataBagId}: Props): JSX.Element
{
if (e instanceof QException)
{
if ((e as QException).status === "404")
if ((e as QException).status === 404)
{
setNotFoundMessage("Data bag data could not be found.");
return;