* E2e test number (#23)

* update

* update changelog

* test

* update

* update

* update changelog

* update

* update
This commit is contained in:
Tim Allen 2024-08-06 14:19:15 +01:00 коммит произвёл GitHub
Родитель 4334cbcb8f
Коммит f2c5ef8922
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
3 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -12,6 +12,7 @@ ENHANCEMENTS:
* Remove AppServiceFileAuditLogs diagnostic setting ([#4033](https://github.com/microsoft/AzureTRE/issues/4033))
BUG FIXES:
* Removed 429 Error (Costs API) form presenting in UI ([#3929](https://github.com/microsoft/AzureTRE/issues/3929))
* Fix numbering issue within `bug_report.md` template ([#4028](https://github.com/microsoft/AzureTRE/pull/4028))
* Disable public network access to the API App Service ([#3986](https://github.com/microsoft/AzureTRE/issues/3986))
* Delete of in-progress container is triggered twice ([#3795](https://github.com/microsoft/AzureTRE/issues/3795))

Просмотреть файл

@ -1,6 +1,6 @@
{
"name": "tre-ui",
"version": "0.5.26",
"version": "0.5.27",
"private": true,
"dependencies": {
"@azure/msal-browser": "^2.35.0",

Просмотреть файл

@ -8,6 +8,7 @@ interface ExceptionLayoutProps {
export const ExceptionLayout: React.FunctionComponent<ExceptionLayoutProps> = (props: ExceptionLayoutProps) => {
const [showDetails, setShowDetails] = useState(false);
const [showMessageBar, setShowMessageBar] = useState(true);
switch (props.e.status) {
case 403:
@ -22,11 +23,17 @@ export const ExceptionLayout: React.FunctionComponent<ExceptionLayoutProps> = (p
<p>Attempted resource: {props.e.endpoint}</p>
</MessageBar>
);
case 429:
return (<></>);
default:
if (!showMessageBar) return null;
return (
<MessageBar
showMessageBar &&
<MessageBar
messageBarType={MessageBarType.error}
isMultiline={true}
onDismiss={()=> setShowMessageBar(false)}
dismissButtonAriaLabel="Close"
>
<h3>{props.e.userMessage}</h3>
<p>{props.e.message}</p><br />
@ -65,6 +72,6 @@ export const ExceptionLayout: React.FunctionComponent<ExceptionLayoutProps> = (p
}
</MessageBar>
)
);
}
};