Skip to content

Commit 9fde35d

Browse files
committed
update isLoading logic and remove hover
1 parent d53827e commit 9fde35d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

site/src/components/VersionsTable/VersionsTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const VersionsTable: FC<VersionsTableProps> = ({ versions }) => {
4343
.reverse()
4444
.map((version) => {
4545
return (
46-
<TableRow hover key={version.id} data-testid={`version-${version.id}`} tabIndex={0}>
46+
<TableRow key={version.id} data-testid={`version-${version.id}`}>
4747
<TableCell>{version.name}</TableCell>
4848
<TableCell>
4949
<span style={{ color: theme.palette.text.secondary }}>

site/src/pages/TemplatePage/TemplatePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const TemplatePage: FC = () => {
2929
})
3030
const { template, activeTemplateVersion, templateResources, templateVersions } =
3131
templateState.context
32-
const isLoading = !template || !activeTemplateVersion || !templateResources || !templateVersions
32+
const isLoading = !template || !activeTemplateVersion || !templateResources
3333

3434
if (isLoading) {
3535
return <Loader />

0 commit comments

Comments
 (0)