Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
b664698
updated-team-meeting-data-6920
terrencejihoonjung Jun 21, 2024
9bca4d0
Update contributor and language data
HackforLABot Jun 21, 2024
bbe37cc
Update contributor and language data
HackforLABot Jun 22, 2024
c74316a
Fix Capitalization of "Slack" in CONTRIBUTING.MD - line 582 (#7038)
dcotelessa Jun 23, 2024
326927f
Update contributor and language data
HackforLABot Jun 23, 2024
17f5b38
Modified spell-check-audit.md file, changed label Feature: Administra…
santiseccovidal Jun 23, 2024
34f7d80
PBB migration "Issue Trigger" (#7053)
t-will-gillis Jun 23, 2024
75e686f
PBB migration "Pull Request Trigger" (#7054)
t-will-gillis Jun 23, 2024
815bde9
PBB migration "Schedule Friday" (#7055)
t-will-gillis Jun 23, 2024
69e70f8
PBB migration "Move Closed Issues" (#7056)
t-will-gillis Jun 23, 2024
4cc4eb9
Add github-handle for Roland Abregorivas in heart.md #6940 (#7009)
jennisung Jun 23, 2024
a151951
github-handle variable added for Gian Reyes Dionisio #6937 (#6984)
williamzhang73 Jun 23, 2024
f9f1c92
Update contributor and language data
HackforLABot Jun 24, 2024
e8f1c06
updated role for Will Gillis on website project profile (#7063)
melissam640 Jun 25, 2024
43b7024
Add github handle for Marie (#7059)
alabador Jun 25, 2024
89fa866
added github handle element for Tien Yuan in heart.md (#7069)
melissam640 Jun 26, 2024
9d0b687
Update contributor and language data
HackforLABot Jun 27, 2024
7094b44
Fixes #7046 Added github handle to _projects/heart.md for Jason LaMan…
DakuwoN Jun 27, 2024
d18fe5e
Update Roslyn's role to Developer Co-Lead (#7070)
alabador Jun 27, 2024
6abb020
img Tag Refactor in Contributing.md page (#7068)
Kle012 Jun 27, 2024
f909481
Update contributor and language data
HackforLABot Jun 28, 2024
53351b0
Added github-handle to Adrian Inchauste's section (#7074)
cchrizzle Jun 29, 2024
0046646
Update contributor and language data
HackforLABot Jun 29, 2024
c16b957
edited Samantha Hyler to be Co-lead AND added Emma Thrash (#7040)
duojet2ez Jun 30, 2024
a625a7d
6786 remove bop from untaggedrepoids in get project datajs (#7062)
mrodz Jun 30, 2024
a225870
Update CONTRIBUTING.md Section 2.7.d with correct stream branch (#7082)
dcotelessa Jul 1, 2024
48b889d
Update meeting data
HackforLABot Jul 1, 2024
4260913
Update contributor and language data
HackforLABot Jul 1, 2024
c2a7622
Update Inactive Members JSON
HackforLABot Jul 1, 2024
c7be9d6
Revert "updated-team-meeting-data-6920 (#7043)" (#7086)
t-will-gillis Jul 2, 2024
1be5fd2
Update contributor and language data
HackforLABot Jul 3, 2024
d688ae9
Update contributor and language data
HackforLABot Jul 4, 2024
efeb70c
updated team meeting data on events page to show meeting frequency
terrencejihoonjung Jul 5, 2024
056ac27
Add 'Leadership Option' to Issue Template for CoP Information Update …
DrAcula27 Jul 5, 2024
681878c
Update contributor and language data
HackforLABot Jul 7, 2024
248bff2
Updated spell checker to ignore memebers names (#7073)
vanessasinam Jul 8, 2024
1151edc
Update contributor and language data
HackforLABot Jul 8, 2024
82878e5
Update contributor and language data
HackforLABot Jul 10, 2024
501535a
truncate contributors name in filter tag with ellipis (#7052)
aadilahmed Jul 10, 2024
bab7015
Update contributor and language data
HackforLABot Jul 11, 2024
4f49e0a
Merge branch 'gh-pages' into update-team-meeting-data-6920
terrencejihoonjung Jul 13, 2024
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
1 change: 1 addition & 0 deletions _includes/events-page/right-col-content.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ <h4 class="day-header-1 title7">{{day}}</h4>
</div>
{% endfor %}
</div>
<p>*This meeting is not weekly, check project link for more details.</p>
</div>

<script src="../../assets/js/right-col-content.js" type="module"></script>
2 changes: 1 addition & 1 deletion assets/js/right-col-content.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function insertEventSchedule(eventData, page) {
let eventHtml;
// insert the correct html for the current page
if (page === "events") {
eventHtml = `<li>${event.start} - ${event.end} </li><li><a href="${event.hflaWebsiteUrl}">${event.name}</a> ${event.meetingName}</li>`;
eventHtml = `<li>${event.start} - ${event.end} </li><li><a href="${event.hflaWebsiteUrl}">${event.name}</a> ${event.meetingName}${event.dsc.length > 0 ? "*" : ""}</li>`;
} else {
if(event.dsc != "") event.meetingName += ", ";
eventHtml = `<li>${event.start} - ${event.end} <a href="${event.hflaWebsiteUrl}">${event.name}</a> ${event.meetingName} ${event.dsc}</li>`;
Expand Down