Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 15, 2024
1 parent 6807e96 commit 16acf9f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/ImageBuilder.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ function ImageLogs({ setTerm, setFitAddon, name }) {

return () => {
if (observer) observer.disconnect();
}
};
}, []);

return (
Expand Down Expand Up @@ -173,7 +173,9 @@ export function ImageBuilder({ name, isActive }) {
className={`row mb-4 align-items-center ${repoError ? "has-error" : ""}`}
>
<div className="col-sm-12 col-xl-3">
<label htmlFor="repo" className="form-label">Repository</label>
<label htmlFor="repo" className="form-label">
Repository
</label>
</div>
<div className="col-sm-12 col-xl-9">
<input
Expand Down
4 changes: 3 additions & 1 deletion src/components/form/fields.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ function Field({ id, label, hint, children, error }) {
return (
<div className={`row mb-4 align-items-center ${error ? "has-error" : ""}`}>
<div className="col-sm-12 col-xl-3">
<label className="form-label" htmlFor={id}>{label}</label>
<label className="form-label" htmlFor={id}>
{label}
</label>
</div>
<div className="col-sm-12 col-xl-9">
{children}
Expand Down

0 comments on commit 16acf9f

Please sign in to comment.