-
Notifications
You must be signed in to change notification settings - Fork 960
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat -- table owner categories (#2260)
* owner category interface Signed-off-by: Ben Dye <[email protected]> * trailing newline Signed-off-by: Ben Dye <[email protected]> * linter Signed-off-by: Ben Dye <[email protected]> * Add other_key_values field to User interface Signed-off-by: Ben Dye <[email protected]> * ts configs for owners section categories Signed-off-by: Ben Dye <[email protected]> * React component changes to render table owners grouped by category Signed-off-by: Ben Dye <[email protected]> * css margin zero for last child Signed-off-by: Ben Dye <[email protected]> * add title-3 to owner category Signed-off-by: Ben Dye <[email protected]> * text for no owner in category Signed-off-by: Ben Dye <[email protected]> * linter Signed-off-by: Ben Dye <[email protected]> --------- Signed-off-by: Ben Dye <[email protected]>
- Loading branch information
Showing
8 changed files
with
100 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,3 +112,12 @@ | |
} | ||
} | ||
} | ||
|
||
ul.component-list { | ||
margin-bottom: $spacer-1; | ||
|
||
&:last-child { | ||
margin-bottom: 0; | ||
} | ||
|
||
} |
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
7 changes: 7 additions & 0 deletions
7
frontend/amundsen_application/static/js/interfaces/OwnerCategory.ts
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// Copyright Contributors to the Amundsen project. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export interface OwnerCategory { | ||
label: string; | ||
definition?: string; | ||
} |
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