summaryrefslogtreecommitdiff
path: root/frontend/src
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2026-06-05 22:29:11 -0400
committerGitHub <noreply@github.com>2026-06-05 22:29:11 -0400
commit232fadd796087bbcbc4dd080cf12b42bf53b71ce (patch)
tree87296cb78420e61b581039f87bdab1ff5492b8dc /frontend/src
parentacaf16521993f7e90206337f24e05649688554e4 (diff)
downloaddecky-loader-d129edd611759e158bfe9609c7a69a3c20318ed5.tar.gz
decky-loader-d129edd611759e158bfe9609c7a69a3c20318ed5.zip
fixes for june 2026 beta errorboundary (#916)v3.2.5-pre1
Co-authored-by: Beebles <102569435+beebls@users.noreply.github.com>
Diffstat (limited to 'frontend/src')
-rw-r--r--frontend/src/components/DeckyErrorBoundary.tsx1
-rw-r--r--frontend/src/components/settings/pages/general/Updater.tsx35
-rw-r--r--frontend/src/components/settings/pages/testing/index.tsx5
-rw-r--r--frontend/src/errorboundary-hook.tsx2
4 files changed, 32 insertions, 11 deletions
diff --git a/frontend/src/components/DeckyErrorBoundary.tsx b/frontend/src/components/DeckyErrorBoundary.tsx
index 29638521..0846d765 100644
--- a/frontend/src/components/DeckyErrorBoundary.tsx
+++ b/frontend/src/components/DeckyErrorBoundary.tsx
@@ -101,7 +101,6 @@ const DeckyErrorBoundary: FunctionComponent<DeckyErrorBoundaryProps> = ({ error,
color: #93929e;
font-size: 15px;
margin: 10px 0px 40px ${vars.rootMarginLeft};
- width: calc(100vw - ${vars.scrollBarwidth} - ${vars.rootMarginLeft});
overflow: visible;
}
.${classes.root} button,
diff --git a/frontend/src/components/settings/pages/general/Updater.tsx b/frontend/src/components/settings/pages/general/Updater.tsx
index 3cd58ab6..37aceb72 100644
--- a/frontend/src/components/settings/pages/general/Updater.tsx
+++ b/frontend/src/components/settings/pages/general/Updater.tsx
@@ -1,4 +1,14 @@
-import { Carousel, DialogButton, Field, Focusable, ProgressBarWithInfo, Spinner, findSP, showModal } from '@decky/ui';
+import {
+ Carousel,
+ DialogButton,
+ Field,
+ Focusable,
+ ProgressBarWithInfo,
+ Spinner,
+ findSP,
+ gamepadDialogClasses,
+ showModal,
+} from '@decky/ui';
import { Suspense, lazy, useCallback, useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { FaExclamation } from 'react-icons/fa';
@@ -153,13 +163,22 @@ export default function UpdaterSettings() {
: t('Updater.updates.install_button')}
</DialogButton>
) : (
- <ProgressBarWithInfo
- layout="inline"
- bottomSeparator="none"
- nProgress={updateProgress}
- indeterminate={reloading}
- sOperationText={reloading ? t('Updater.updates.reloading') : t('Updater.updates.updating')}
- />
+ <div id="decky-hide-left">
+ <style>
+ {`
+ #decky-hide-left .${gamepadDialogClasses.FieldLeftColumn} {
+ display: none;
+ }
+ `}
+ </style>
+ <ProgressBarWithInfo
+ layout="inline"
+ bottomSeparator="none"
+ nProgress={updateProgress}
+ indeterminate={reloading}
+ sOperationText={reloading ? t('Updater.updates.reloading') : t('Updater.updates.updating')}
+ />
+ </div>
)}
</Field>
{versionInfo?.remote && versionInfo?.remote?.tag_name != versionInfo?.current && (
diff --git a/frontend/src/components/settings/pages/testing/index.tsx b/frontend/src/components/settings/pages/testing/index.tsx
index 0f8b5ebe..7e657db1 100644
--- a/frontend/src/components/settings/pages/testing/index.tsx
+++ b/frontend/src/components/settings/pages/testing/index.tsx
@@ -84,7 +84,10 @@ export default function TestingVersionList() {
<Field
label={
<>
- {version.name} <span style={{ opacity: '50%' }}>{'#' + version.id}</span>
+ {version.name}{' '}
+ <span style={{ opacity: '50%', whiteSpace: 'nowrap', marginLeft: 'auto', alignSelf: 'center' }}>
+ {'#' + version.id}
+ </span>
</>
}
>
diff --git a/frontend/src/errorboundary-hook.tsx b/frontend/src/errorboundary-hook.tsx
index 2c69a267..70aa2188 100644
--- a/frontend/src/errorboundary-hook.tsx
+++ b/frontend/src/errorboundary-hook.tsx
@@ -24,7 +24,7 @@ class ErrorBoundaryHook extends Logger {
window.__ERRORBOUNDARY_HOOK_INSTANCE = this;
// valve writes only the sanest of code
- const exp = /^\(\)=>\(.\|\|.\(new .\),.\)$/;
+ const exp = /^\(\)=>\(.\|\|(?:.\(|\(.=)new .\),.\)$/;
const initErrorReportingStore = findModuleExport(
(e) => typeof e == 'function' && e?.toString && exp.test(e.toString()),
);