Skip to content
Closed
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 src/js/components/__snapshots__/repository.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`components/repository.tsx should render itself & its children 1`] = `
Array [
<div
className="flex flex-1 p-2 bg-gray-100 dark:bg-gray-darker dark:text-white"
className="flex flex-initial p-2 bg-gray-100 dark:bg-gray-darker dark:text-white"
>
<div
className="flex flex-1 p-0.5 items-center mt-0 text-sm font-medium overflow-hidden overflow-ellipsis whitespace-nowrap"
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/repository.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const RepositoryNotifications: React.FC<IProps> = (props) => {

return (
<>
<div className="flex flex-1 p-2 bg-gray-100 dark:bg-gray-darker dark:text-white">
<div className="flex flex-initial p-2 bg-gray-100 dark:bg-gray-darker dark:text-white">
<div className="flex flex-1 p-0.5 items-center mt-0 text-sm font-medium overflow-hidden overflow-ellipsis whitespace-nowrap">
<img className="rounded w-5 h-5 ml-1 mr-3" src={avatarUrl} />
<span onClick={openBrowser}>{props.repoName}</span>
Expand Down