Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix two warnings during test #166

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/webui/src/app/components/content/group/GroupEdit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ const EditConstituents = ({store, currentAvailable}) => {

return <div className="fieldset">
<ol className="left-half detail-value detail-edit-list">
<lt><label>Current:</label><span className="hint">(hover for controls)</span></lt>
<label>Current:</label><span className="hint">(hover for controls)</span>
{
store.constituents && store.constituents.map((item, index) => <li key={`constituent-${item}`}><div className="constituent">
<div className="inline value">{item}</div>
Expand Down Expand Up @@ -124,7 +124,7 @@ const EditConstituents = ({store, currentAvailable}) => {
}
</ol>
<ol className="right-half detail-value detail-edit-list">
<lt><label>Available:</label><span className="hint">(click to add to constituents)</span></lt>
<label>Available:</label><span className="hint">(click to add to constituents)</span>
{
currentAvailable && currentAvailable.map(item => store.packageType !== "" && item.startsWith(store.packageType) && <li key={`available-${item}`}><div className="available">
<a href="" title="Add to constituents" className="surround-cp-action" onClick={e => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const EditCapabilities = ({allowReleases, allowSnapshots, register}) => {
EditCapabilities.propTypes = {
allowReleases: PropTypes.bool,
allowSnapshots: PropTypes.bool,
register: PropTypes.function,
register: PropTypes.func
};

export default function HostedEdit() {
Expand Down
Loading