passbolt-styleguide 5.10.2 → 5.10.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/RELEASE_NOTES.md +4 -4
- package/build/css/help.min.css +2 -2
- package/build/css/public.min.css +2 -2
- package/build/css/themes/default/api_authentication.min.css +2 -2
- package/build/css/themes/default/api_cloud.min.css +2 -2
- package/build/css/themes/default/api_main.min.css +2 -2
- package/build/css/themes/default/api_reports.min.css +2 -2
- package/build/css/themes/default/api_webinstaller.min.css +2 -2
- package/build/css/themes/default/ext_app.min.css +2 -2
- package/build/css/themes/default/ext_authentication.min.css +2 -2
- package/build/css/themes/default/ext_external.min.css +2 -2
- package/build/css/themes/default/ext_in_form_cta.min.css +2 -2
- package/build/css/themes/default/ext_in_form_menu.min.css +2 -2
- package/build/css/themes/default/ext_quickaccess.min.css +2 -2
- package/build/css/themes/midgar/api_authentication.min.css +2 -2
- package/build/css/themes/midgar/api_main.min.css +2 -2
- package/build/css/themes/midgar/api_reports.min.css +2 -2
- package/build/css/themes/midgar/ext_app.min.css +2 -2
- package/build/css/themes/midgar/ext_authentication.min.css +2 -2
- package/build/css/themes/midgar/ext_in_form_cta.min.css +2 -2
- package/build/css/themes/midgar/ext_in_form_menu.min.css +2 -2
- package/build/css/themes/midgar/ext_quickaccess.min.css +2 -2
- package/package.json +1 -1
- package/src/react-extension/components/Metadata/ConfirmMetadataKey/ConfirmMetadataKey.js +1 -5
- package/src/react-extension/contexts/PasswordExpirySettingsContext.js +5 -1
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
v5.
|
|
2
|
-
This version introduces a design fix for the Yubikey login page.
|
|
1
|
+
v5.10.3
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
Provide fixes to:
|
|
4
|
+
- make the Expiry column visible again.
|
|
5
|
+
- display the metadata key rotation author appear correctly
|
package/build/css/help.min.css
CHANGED
package/build/css/public.min.css
CHANGED
package/package.json
CHANGED
|
@@ -22,7 +22,6 @@ import UserAvatar from "../../Common/Avatar/UserAvatar";
|
|
|
22
22
|
import CaretDownSVG from "../../../../img/svg/caret_down.svg";
|
|
23
23
|
import CaretRightSVG from "../../../../img/svg/caret_right.svg";
|
|
24
24
|
import Fingerprint from "../../Common/Fingerprint/Fingerprint";
|
|
25
|
-
import DisplayAroName, { DisplayAroNameVariations } from "../../../../shared/components/Aro/DisplayAroName";
|
|
26
25
|
|
|
27
26
|
class ConfirmMetadataKey extends Component {
|
|
28
27
|
constructor(props) {
|
|
@@ -128,10 +127,7 @@ class ConfirmMetadataKey extends Component {
|
|
|
128
127
|
<Trans>
|
|
129
128
|
The encryption key used to share metadata between users has been updated by{" "}
|
|
130
129
|
<span className="creator">
|
|
131
|
-
|
|
132
|
-
displayAs={DisplayAroNameVariations.USER}
|
|
133
|
-
user={this.props.metadataKey.creator}
|
|
134
|
-
/>
|
|
130
|
+
{this.props.metadataKey.creator.getUserFormattedName(this.translate)}
|
|
135
131
|
</span>
|
|
136
132
|
.
|
|
137
133
|
</Trans>
|
|
@@ -18,6 +18,7 @@ import { withAppContext } from "../../shared/context/AppContext/AppContext";
|
|
|
18
18
|
import { withTranslation } from "react-i18next";
|
|
19
19
|
import { formatDateForApi } from "../../shared/utils/dateUtils";
|
|
20
20
|
import { DateTime } from "luxon";
|
|
21
|
+
import { flushSync } from "react-dom";
|
|
21
22
|
|
|
22
23
|
/**
|
|
23
24
|
* The User Passphrase Policies Context
|
|
@@ -65,7 +66,10 @@ export class PasswordExpirySettingsContextProvider extends React.Component {
|
|
|
65
66
|
return;
|
|
66
67
|
}
|
|
67
68
|
const settings = await this.props.context.port.request("passbolt.password-expiry.get-or-find");
|
|
68
|
-
|
|
69
|
+
flushSync(() => {
|
|
70
|
+
// TODO: REACT18 Refactor PasswordExpirySettingsContext https://app.clickup.com/t/86c8njkwk
|
|
71
|
+
this.setState({ settings });
|
|
72
|
+
});
|
|
69
73
|
}
|
|
70
74
|
|
|
71
75
|
/**
|