hds-web 1.39.8 → 1.40.0

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.8",
3
+ "version": "1.40.0",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -177,13 +177,15 @@ export default function AboutSection(props) {
177
177
  <Typography textStyle="h6" className="text-neutral-500 uppercase">
178
178
  {props.creator ?? "Creator"}
179
179
  </Typography>
180
- {props.hasuraIncUrl && (
180
+ {props.authorURL && props?.authorName && (
181
181
  <a
182
- href={props.hasuraIncUrl}
182
+ href={props.authorURL}
183
183
  className="flex gap-2 items-center pt-4"
184
+ target="_blank"
185
+ rel="noopener noreferrer"
184
186
  >
185
187
  <Typography textStyle="body1-medium" className="text-blue-600">
186
- {props.hasuraInc ?? "Hasura, Inc"}
188
+ {props.authorName}
187
189
  </Typography>
188
190
  <Icon
189
191
  height={"h-5 w-5 stroke-[1.5px]"}
@@ -192,12 +194,12 @@ export default function AboutSection(props) {
192
194
  />
193
195
  </a>
194
196
  )}
195
- {props.Email && (
197
+ {props.authorEmail && (
196
198
  <Typography
197
199
  textStyle="body1-medium"
198
200
  className="text-neutral-500 pt-2"
199
201
  >
200
- {props.Email ?? "support@hasura.io"}
202
+ {props.authorEmail}
201
203
  </Typography>
202
204
  )}
203
205
  </div>