-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sorting to imported repos list and corresponding API (#19097)
* adding sorting support for ListConfigurations * Getting sortable headers partially setup * killing the global button styles * Updating sortable headers * cleanup * adding comment about sort field * Update components/dashboard/src/app/Blocked.tsx Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/src/components/Button.tsx Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/src/components/podkit/buttons/Button.tsx Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/src/components/toasts/Toast.tsx remove redundant styles Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/src/components/podkit/tables/SortableTable.tsx Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/src/usage/UsageDateFilters.tsx remove redundant style Co-authored-by: Filip Troníček <[email protected]> * Update components/dashboard/public/complete-auth/index.html Co-authored-by: Filip Troníček <[email protected]> * extracting to a local LoginButton component * whoopsie --------- Co-authored-by: Filip Troníček <[email protected]>
- Loading branch information
1 parent
4aef5ce
commit 73a1c76
Showing
54 changed files
with
996 additions
and
508 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
import { FunctionComponent } from "react"; | ||
import { Heading1, Subheading } from "../components/typography/headings"; | ||
import gitpodIcon from "../icons/gitpod.svg"; | ||
import { Button } from "@podkit/buttons/Button"; | ||
|
||
export const Blocked: FunctionComponent = () => { | ||
return ( | ||
|
@@ -23,7 +24,7 @@ export const Blocked: FunctionComponent = () => { | |
. | ||
</Subheading> | ||
<a className="mx-auto" href="mailto:[email protected]?Subject=Blocked"> | ||
<button className="secondary">Contact Support</button> | ||
<Button variant="secondary">Contact Support</Button> | ||
</a> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.