Merge BDC error fixes into release (#8145)

* Fix BDC remember password and reprompting connection (#7957)

* Fix remember password and reprompting connection

* comment

* Fix to remember password for session

* Fix floating promises

* 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-31 13:36:14 -07:00
committed by GitHub
parent 78ec3c016b
commit fbcd3c620c
12 changed files with 286 additions and 114 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';