diff --git a/src/components/download/downloadModal.js b/src/components/download/downloadModal.js
index 3e046ac82..20e7ef82e 100644
--- a/src/components/download/downloadModal.js
+++ b/src/components/download/downloadModal.js
@@ -151,6 +151,7 @@ class DownloadModal extends React.Component {
x.push(this.createSummaryWrapper());
x.push("");
x.push(`${this.props.t("Data usage part 1")} A full list of sequence authors is available via nextstrain.org.`);
+ x.push(`Visualizations are licensed under CC-BY.`);
x.push(`Relevant publications:`);
this.getRelevantPublications().forEach((pub) => {
x.push(`${pub.author}, ${pub.title}, ${pub.journal} (${pub.year})`);
@@ -191,7 +192,7 @@ class DownloadModal extends React.Component {
(), () => helpers.authorTSV(this.props.dispatch, filePrefix, this.props.tree)]);
}
buttons.push(
- ["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format.",
+ ["Screenshot (SVG)", "Screenshot of the current nextstrain display in SVG format; CC-BY licensed.",
(), () => helpers.SVG(this.props.dispatch, filePrefix, this.props.panelsToDisplay, this.props.panelLayout, this.makeTextStringsForSVGExport())]
);
const buttonTextStyle = Object.assign({}, materialButton, {backgroundColor: "rgba(0,0,0,0)", paddingLeft: "10px", color: "white", minWidth: "300px", textAlign: "left" });