Skip to content

Commit b60ae62

Browse files
committed
Add missing semicolon
1 parent c4f8aac commit b60ae62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/components/notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var Notification = React.createClass({
1818
openBrowser: function () {
1919
var url = this.props.notification.subject.url.replace('api.github.com/repos', 'www.github.com');
2020
if (url.indexOf("/pulls/") != -1) {
21-
url = url.replace("/pulls/", "/pull/")
21+
url = url.replace("/pulls/", "/pull/");
2222
}
2323
shell.openExternal(url);
2424
},

0 commit comments

Comments
 (0)