-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* graphCard, c3graphCard, filter to query name * queryTypes, rhsmTypes, filter to query, align naming * toolbar, apply query SLA type * viewReducer, apply query types
- Loading branch information
Showing
10 changed files
with
121 additions
and
89 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
import { appTypes } from './appTypes'; | ||
import { graphTypes } from './graphTypes'; | ||
import { platformTypes } from './platformTypes'; | ||
import { queryTypes } from './queryTypes'; | ||
import { rhsmTypes } from './rhsmTypes'; | ||
import { userTypes } from './userTypes'; | ||
|
||
const reduxTypes = { | ||
app: appTypes, | ||
graph: graphTypes, | ||
platform: platformTypes, | ||
query: queryTypes, | ||
rhsm: rhsmTypes, | ||
user: userTypes | ||
}; | ||
|
||
export { reduxTypes as default, reduxTypes, appTypes, graphTypes, platformTypes, rhsmTypes, userTypes }; | ||
export { reduxTypes as default, reduxTypes, appTypes, graphTypes, platformTypes, queryTypes, rhsmTypes, userTypes }; |
Oops, something went wrong.