Skip to content

Commit

Permalink
Fixed issue with source certs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed May 26, 2021
1 parent 27e4d08 commit 25bfe03
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.2",
"sass": "^1.32.11",
"sass": "1.32.11",
"use-http": "^1.0.20",
"use-query-params": "^1.2.2",
"web-vitals": "^1.0.1"
Expand Down
Binary file added ui/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion ui/src/app/form/component/widgets/TextareaWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const TextareaWidget = ({

return (
<>
<Form.Label className={`${rawErrors.length > 0 ? "text-danger" : ""}`}>
<Form.Label className={`${touched && rawErrors.length > 0 ? "text-danger" : ""}`}>
<span>
<Translate value={label || schema.title} />
{(label || schema.title) && required ? <FontAwesomeIcon icon={faAsterisk} className="ml-2 text-danger" size="sm" /> : null}
Expand Down
2 changes: 1 addition & 1 deletion ui/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10076,7 +10076,7 @@ sass-loader@^10.0.5:
schema-utils "^3.0.0"
semver "^7.3.2"

sass@^1.32.11:
sass@1.32.11:
version "1.32.11"
resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.11.tgz#b236b3ea55c76602c2ef2bd0445f0db581baa218"
integrity sha512-O9tRcob/fegUVSIV1ihLLZcftIOh0AF1VpKgusUfLqnb2jQ0GLDwI5ivv1FYWivGv8eZ/AwntTyTzjcHu0c/qw==
Expand Down

0 comments on commit 25bfe03

Please sign in to comment.