= ({
return (
onPressSort(id)} data-testid={id}>
- {columnName} {getColumnIcon()}
+ {columnName}
+ {getColumnIcon()}
);
};
diff --git a/src/features/dashboard/components/common-table/cell-copy-text.module.scss b/src/features/dashboard/components/common-table/cell-copy-text.module.scss
index a47a37394..993e4a5f6 100644
--- a/src/features/dashboard/components/common-table/cell-copy-text.module.scss
+++ b/src/features/dashboard/components/common-table/cell-copy-text.module.scss
@@ -5,7 +5,6 @@
cursor: pointer;
p {
- width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
diff --git a/src/features/dashboard/update-app/index.tsx b/src/features/dashboard/update-app/index.tsx
index 41e7c0551..54c57546a 100644
--- a/src/features/dashboard/update-app/index.tsx
+++ b/src/features/dashboard/update-app/index.tsx
@@ -8,8 +8,9 @@ import useWS from '@site/src/hooks/useWs';
import RegisterAppDialogError from '../components/dialogs/register-app-dialog-error';
export default function UpdateApp() {
- const { current_updating_item, updateCurrentTab } = useAppManager();
+ const { current_updating_item, updateCurrentTab, getApps } = useAppManager();
const { send: updateApp, is_loading, error, data, clear } = useWS('app_update');
+
const initialValues = {
...current_updating_item,
@@ -24,6 +25,7 @@ export default function UpdateApp() {
useEffect(() => {
if (data?.app_id && !error) {
+ getApps();
updateCurrentTab(TDashboardTab.MANAGE_APPS);
}
}, [data, error, updateCurrentTab]);