hds-web 1.39.9 → 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
@@ -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
|
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>
|