Skip to content

Commit

Permalink
Fix role field.
Browse files Browse the repository at this point in the history
  • Loading branch information
ranbo committed Oct 3, 2024
1 parent a029666 commit db7fa3c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion split/time-machine.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
// KWNR-ZYT - Ineffective (duplicate) ordinances
// LZ62-TSV - Charlemagne. 13000 merges.
// L25C-9Z7 - Guy with multiple ordinances.
// GT54-3CQ - Guy with stapled ordinances

/* Still to do:
= Call split endpoint.
Expand Down Expand Up @@ -2916,7 +2917,7 @@ class PersonRow {
let html = "";
if (text.length > 120 || text.includes("\n")) {
html += "<img alt='" + (this.isNoteCollapsed ? "(more)" : "(less)")
+ "' class='arrow-image' src='../graph/images/arrows/" + (this.isNoteCollapsed ? "right" : "down")
+ "' class='arrow-image' src='https://familysearch.github.io/gedcomx-viewer/graph/images/arrows/" + (this.isNoteCollapsed ? "right" : "down")
+ ".png' onclick='toggleCollapseNote(event, \"" + this.id + "\")'>";
if (this.isNoteCollapsed) {
if (text.length > 120) {
Expand Down

0 comments on commit db7fa3c

Please sign in to comment.