hds-web 1.39.9 → 1.40.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.39.9",
3
+ "version": "1.40.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -292,6 +292,10 @@ V3Footer.defaultProps = {
292
292
  linkText: "Legal",
293
293
  linkUrl: "https://hasura.io/legal",
294
294
  },
295
+ {
296
+ linkText: "Cookie Policy",
297
+ linkUrl: "https://hasura.io/legal/hasura-cookie-policy",
298
+ },
295
299
  {
296
300
  linkText: "Privacy Policy",
297
301
  linkUrl: "https://hasura.io/legal/hasura-privacy-policy",
@@ -178,7 +178,12 @@ export default function AboutSection(props) {
178
178
  {props.creator ?? "Creator"}
179
179
  </Typography>
180
180
  {props.authorURL && props?.authorName && (
181
- <a href={props.authorURL} className="flex gap-2 items-center pt-4">
181
+ <a
182
+ href={props.authorURL}
183
+ className="flex gap-2 items-center pt-4"
184
+ target="_blank"
185
+ rel="noopener noreferrer"
186
+ >
182
187
  <Typography textStyle="body1-medium" className="text-blue-600">
183
188
  {props.authorName}
184
189
  </Typography>