Skip to content

Commit

Permalink
change == to === publiclab#8478
Browse files Browse the repository at this point in the history
  • Loading branch information
noi5e committed Jan 14, 2021
1 parent 15e690c commit ef0ab12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ $E = {
},
link: function(uri) {
uri = prompt('Enter a URL');
if (uri == null) { uri = ""; }
if (uri === null) { uri = ""; }
$E.wrap('[', '](' + uri + ')');
},
image: function(src) {
Expand Down

0 comments on commit ef0ab12

Please sign in to comment.