Skip to content

Commit 9e43eb5

Browse files
authored
Merge pull request #130 from stephenshank/1.1.6-rc-stephenshank
Use existing autoadded flag, rename table, use createdDate for CoI.
2 parents 98236f8 + f531ca8 commit 9e43eb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/clusternetwork.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,6 @@ var hivtrace_cluster_network_graph = function (
11941194
if (n.added > latest_date) {
11951195
latest_date = n.added;
11961196
}
1197-
n.autoadded = false;
11981197
} catch (e) {}
11991198
});
12001199
});
@@ -2954,7 +2953,7 @@ var hivtrace_cluster_network_graph = function (
29542953

29552954
panel_object._append_node = function (node) {
29562955
if (!("_priority_set_date" in node)) {
2957-
node["_priority_set_date"] = self.getCurrentDate();
2956+
node["_priority_set_date"] = createdDate;
29582957
} else {
29592958
}
29602959
if (!("_priority_set_kind" in node)) {
@@ -5989,6 +5988,7 @@ var hivtrace_cluster_network_graph = function (
59895988
if (current_node_set) {
59905989
self.open_priority_set_editor(
59915990
[],
5991+
"",
59925992
"Merged from " + [...current_selection].join(" and ")
59935993
);
59945994
self
@@ -8867,7 +8867,7 @@ var hivtrace_cluster_network_graph = function (
88678867
d3.select("#priority_set_table_download").on("click", function (d) {
88688868
helpers.export_csv_button(
88698869
self.priority_groups_export_sets(),
8870-
"priority_set_table"
8870+
"clusters_of_interest_table"
88718871
);
88728872
});
88738873
}

0 commit comments

Comments
 (0)