hds-web 1.39.8 → 1.39.9
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
@@ -177,13 +177,10 @@ 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.
|
181
|
-
<a
|
182
|
-
href={props.hasuraIncUrl}
|
183
|
-
className="flex gap-2 items-center pt-4"
|
184
|
-
>
|
180
|
+
{props.authorURL && props?.authorName && (
|
181
|
+
<a href={props.authorURL} className="flex gap-2 items-center pt-4">
|
185
182
|
<Typography textStyle="body1-medium" className="text-blue-600">
|
186
|
-
{props.
|
183
|
+
{props.authorName}
|
187
184
|
</Typography>
|
188
185
|
<Icon
|
189
186
|
height={"h-5 w-5 stroke-[1.5px]"}
|
@@ -192,12 +189,12 @@ export default function AboutSection(props) {
|
|
192
189
|
/>
|
193
190
|
</a>
|
194
191
|
)}
|
195
|
-
{props.
|
192
|
+
{props.authorEmail && (
|
196
193
|
<Typography
|
197
194
|
textStyle="body1-medium"
|
198
195
|
className="text-neutral-500 pt-2"
|
199
196
|
>
|
200
|
-
{props.
|
197
|
+
{props.authorEmail}
|
201
198
|
</Typography>
|
202
199
|
)}
|
203
200
|
</div>
|