aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-11-29 07:00:02 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-29 01:30:02 +0000
commit85ec1e52f1139ab4040ee28d7c8b1cb160290376 (patch)
tree8bec93ee4ff44c13e30dad06a5742432357813d6 /src/components
parentFix winget workflow for beta releases [skip ci] (#803) (diff)
downloadferdium-app-85ec1e52f1139ab4040ee28d7c8b1cb160290376.tar.gz
ferdium-app-85ec1e52f1139ab4040ee28d7c8b1cb160290376.tar.zst
ferdium-app-85ec1e52f1139ab4040ee28d7c8b1cb160290376.zip
Upgrade outdated npm packages (#802)
Diffstat (limited to 'src/components')
-rw-r--r--src/components/layout/AppLayout.tsx25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/components/layout/AppLayout.tsx b/src/components/layout/AppLayout.tsx
index c2468e852..9ea5463a2 100644
--- a/src/components/layout/AppLayout.tsx
+++ b/src/components/layout/AppLayout.tsx
@@ -157,18 +157,19 @@ class AppLayout extends Component<IProps, IState> {
157 {sidebar} 157 {sidebar}
158 <div className="app__service"> 158 <div className="app__service">
159 <WorkspaceSwitchingIndicator /> 159 <WorkspaceSwitchingIndicator />
160 {!areRequiredRequestsSuccessful && showRequiredRequestsError && ( 160 {!areRequiredRequestsSuccessful &&
161 <InfoBar 161 showRequiredRequestsError && (
162 type="danger" 162 <InfoBar
163 ctaLabel="Try again" 163 type="danger"
164 ctaLoading={areRequiredRequestsLoading} 164 ctaLabel="Try again"
165 sticky 165 ctaLoading={areRequiredRequestsLoading}
166 onClick={retryRequiredRequests} 166 sticky
167 > 167 onClick={retryRequiredRequests}
168 <Icon icon={mdiFlash} /> 168 >
169 {intl.formatMessage(messages.requiredRequestsFailed)} 169 <Icon icon={mdiFlash} />
170 </InfoBar> 170 {intl.formatMessage(messages.requiredRequestsFailed)}
171 )} 171 </InfoBar>
172 )}
172 {authRequestFailed && ( 173 {authRequestFailed && (
173 <InfoBar 174 <InfoBar
174 type="danger" 175 type="danger"