diff --git a/server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/session/WebSession.java b/server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/session/WebSession.java index fbff2dbbda..8152e14049 100644 --- a/server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/session/WebSession.java +++ b/server/bundles/io.cloudbeaver.model/src/io/cloudbeaver/model/session/WebSession.java @@ -921,7 +921,7 @@ public boolean provideAuthParameters( .create(); credGson.fromJson(credGson.toJsonTree(configuration.getAuthProperties()), credentials.getClass()); - configuration.getAuthModel().saveCredentials(dataSourceContainer, configuration, credentials); + configuration.getAuthModel().provideCredentials(dataSourceContainer, configuration, credentials); } catch (DBException e) { addSessionError(e); log.error(e); diff --git a/webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.m.css b/webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.m.css index 2deaf37a8d..cba44a6d0d 100644 --- a/webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.m.css +++ b/webapp/packages/plugin-data-export/src/ExportNotification/ExportNotification.m.css @@ -18,4 +18,5 @@ margin: 0; text-overflow: ellipsis; overflow: hidden; -} \ No newline at end of file + white-space: nowrap; +}