Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/providers/applaunchpad/src/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
th {
text-align: left;
padding: 8px 16px;
user-select: all;
user-select: auto;
font-weight: 500;
color: #485264;
line-height: 16px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ export default function DeployDevboxDrawer({
formData: tempFormDataStr
}
});
}, [deployData]);
onSuccess();
}, [deployData, onSuccess]);

const handleUpdate = useCallback(
(item: AppListItemType) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ export default function FileManager({ ...styles }: FlexProps) {
}}
position={'relative'}
>
<Table variant="simple">
<Table variant="simple" position="relative" zIndex={1}>
<Thead>
{table.getHeaderGroups().map((group) => {
return (
Expand Down
Loading