Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Move license header in react dom components (#3003)
Browse files Browse the repository at this point in the history
* Move license header in react dom components

* remove empty line at beginning
  • Loading branch information
nwangtw authored and nlu90 committed Aug 22, 2018
1 parent 2445fd6 commit 3c4ec25
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions heron/tools/ui/resources/static/js/alltopologies.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jsx React.DOM */

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -17,8 +19,6 @@
* under the License.
*/

/** @jsx React.DOM */

var TopologyItem = React.createClass({
render: function() {
var topology = this.props.topology;
Expand Down
4 changes: 2 additions & 2 deletions heron/tools/ui/resources/static/js/common.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jsx React.DOM */

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -17,8 +19,6 @@
* under the License.
*/

/** @jsx React.DOM */

var ActionButton = React.createClass({
render: function() {
// Map containing key to destination links.
Expand Down
4 changes: 2 additions & 2 deletions heron/tools/ui/resources/static/js/config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jsx React.DOM */

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -17,8 +19,6 @@
* under the License.
*/

/** @jsx React.DOM */

var ConfigTable = React.createClass({
getInitialState: function() {
return {
Expand Down
4 changes: 2 additions & 2 deletions heron/tools/ui/resources/static/js/exceptions.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jsx React.DOM */

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -17,8 +19,6 @@
* under the License.
*/

/** @jsx React.DOM */

// TODO(nbhagat): Aggregate exceptions for better display.
// Requires baseUrl, cluster, environ, topology, comp_name, instance properties.
var InstanceExceptionLogs = React.createClass({
Expand Down
4 changes: 2 additions & 2 deletions heron/tools/ui/resources/static/js/topologies.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/** @jsx React.DOM */

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
Expand All @@ -17,8 +19,6 @@
* under the License.
*/

/** @jsx React.DOM */

var SUM = 0,
AVG = 1,
LAST = 2;
Expand Down

0 comments on commit 3c4ec25

Please sign in to comment.