Skip to content

Commit

Permalink
nav, upload page
Browse files Browse the repository at this point in the history
  • Loading branch information
liuliu-dev committed Jan 22, 2025
1 parent 6c76133 commit f19c1bc
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

.smallHeader {
@apply hidden h-24 pt-4;
@apply hidden h-24;

@screen lg {
@apply h-16 flex items-center justify-between;
Expand Down
2 changes: 1 addition & 1 deletion web/renderer/components/DatabaseNav/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function NavItem(props: Props) {
<li className={css.disabledTab}>
<span
className={css.innerTab}
data-tooltip-position="top"
data-tooltip-place="left"
data-tooltip-id="disabled-database-nav-item"
data-tooltip-content={`${props.name} tab is only available for Dolt databases`}
>
Expand Down
2 changes: 1 addition & 1 deletion web/renderer/components/DiffTableNav/ForRef.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function ForRef(props: Props) {
{...props}
diffStat={
<p className={css.noDiff} data-cy="diff-layout-no-diff">
Select commit to view diff
Select revision to view diff
</p>
}
diffTables={null}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function BranchCommitAndTagSelector(props: Props) {
return (
<FormSelect.Grouped
isLoading={branchLoading || commitLoading || tagLoading}
value={[...branchOptions, ...commitOptions].find(
value={[...branchOptions, ...commitOptions, ...tagOptions].find(
t => t.value === props.selectedValue,
)}
onChange={async e => handleChangeRef(e?.value)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ function Inner({ commits, ...props }: InnerProps) {
<div className={css.container}>
<div className={css.top}>
<h1 className={css.title}>Commit Log</h1>
<div className={css.buttons}>
<Button.Group className={css.buttons}>
<Link {...compare(props.params)}>
<Button className={css.button}>Diff Commits</Button>
</Link>
<CommitGraphButton params={props.params} />
</div>
</Button.Group>
</div>
<InfiniteScroll
loadMore={props.loadMore}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.header {
@apply w-full bg-storm-500 text-center p-4 justify-between hidden lg:flex;
@apply w-full bg-storm-500 text-center p-4 justify-between hidden absolute top-12 lg:flex;

h1 {
@apply text-white text-2xl font-normal;
Expand Down

0 comments on commit f19c1bc

Please sign in to comment.