-
Notifications
You must be signed in to change notification settings - Fork 4
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
feature/deseng745: Added multi-select checkboxes for project type. Cleaned up form CSS. #124
Conversation
jareth-whitney
commented
Nov 22, 2024
- Added multi-select checkboxes for project type
- Cleaned up form CSS
…eaned up form CSS.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Approved
<label>File name</label> | ||
<p>{{ logo.controls.name.value }}</p> | ||
</div> | ||
<div class="logo-link-container"> | ||
<div class="logo-link-container full-wide"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a lot for cleaning up some of the display in the backend!
@@ -82,6 +82,12 @@ export class AddEditProjectComponent implements OnInit, AfterViewInit, OnDestroy | |||
'Plan Implementation and Monitoring' | |||
]; | |||
|
|||
public projectTypes: Array<Object> = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can use the ProjectTypes type that you defined in project.ts here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
* | ||
* @returns {Array} Array of project type strings. | ||
*/ | ||
private getTypesFormValues(): Project['projectTypes'] { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could use the ProjectTypes type here too