From 27f828e6199cec4168c069c42d574301eaa0f78c Mon Sep 17 00:00:00 2001
From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com>
Date: Tue, 4 Aug 2020 10:56:36 -0700
Subject: [PATCH] Message to view export on library page
---
data/interfaces/default/export_modal.html | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/data/interfaces/default/export_modal.html b/data/interfaces/default/export_modal.html
index 01556705..f163ed25 100644
--- a/data/interfaces/default/export_modal.html
+++ b/data/interfaces/default/export_modal.html
@@ -81,10 +81,13 @@ DOCUMENTATION :: END
async: true,
success: function (data) {
if (data.result === 'success') {
+ var msg = '';
if (typeof export_table !== 'undefined') {
redrawExportTable();
+ } else {
+ msg = '
View the export from the library page.'
}
- showMsg(' ' + data.message, false, true, 5000);
+ showMsg(' ' + data.message + msg, false, true, 5000);
} else {
showMsg(' ' + data.message, false, true, 5000, true);
}