Skip to content

Commit

Permalink
change warning message for making table public
Browse files Browse the repository at this point in the history
  • Loading branch information
yilmazbekdemir authored and jefmoura committed Jun 21, 2018
1 parent 88467c3 commit 10b4fdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates2/display/silo.html
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ <h4 class="modal-title"></h4>
if (btn_txt == "Make Private") {
message = "Do you want to make this table private?";
} else {
message = "Public tables can be accessible by everyone. Do you want to continue?";
message = "Public tables can be accessible by everyone, even users who are not in your organizations. Do you want to continue?";
}
if (window.confirm(message)) {
return true;
Expand Down
2 changes: 1 addition & 1 deletion templates2/display/silos.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
if (btn_txt == "Public") {
message = "Do you want to make this table private?";
} else {
message = "Public tables can be accessible by everyone. Do you want to continue?";
message = "Public tables can be accessible by everyone, even users who are not in your organizations. Do you want to continue?";
}
if (window.confirm(message)) {
return true;
Expand Down

0 comments on commit 10b4fdc

Please sign in to comment.