Add error messages to BDC dashboard page (#8103)

* Add error messages to BDC dashboard page

* Remove testing code

* PR fixes
This commit is contained in:
Charles Gagnon
2019-10-30 15:23:34 -07:00
committed by GitHub
parent 836bf1d28a
commit ef9321ef2c
6 changed files with 113 additions and 27 deletions

View File

@@ -71,6 +71,7 @@ export namespace cssStyles {
export const selectedTabDiv = { 'border-bottom': '2px solid #000' };
export const unselectedTabDiv = { 'border-bottom': '1px solid #ccc' };
export const lastUpdatedText = { ...text, 'color': '#595959' };
export const errorText = { ...text, 'color': 'red' };
}
export type AuthType = 'integrated' | 'basic';