Skip to content

Commit

Permalink
Remove experimental flag from pages 🎉 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundoa authored and joschi committed Dec 15, 2016
1 parent 9b4c17a commit f682110
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion plugin/src/web/pipelines/PipelineDetailsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ const PipelineDetailsPage = React.createClass({
return (
<DocumentTitle title={pageTitle}>
<div>
<PageHeader title={title} experimental>
<PageHeader title={title}>
<span>
Pipelines let you transform and process messages coming from streams. Pipelines consist of stages where
rules are evaluated and applied. Messages can go through one or more stages.
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/web/pipelines/PipelinesOverviewPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const PipelinesOverviewPage = React.createClass({
return (
<DocumentTitle title="Pipelines">
<div>
<PageHeader title="Pipelines overview" experimental>
<PageHeader title="Pipelines overview">
<span>
Pipelines let you transform and process messages coming from streams. Pipelines consist of stages where
rules are evaluated and applied. Messages can go through one or more stages.
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/web/rules/Rule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Rule = React.createClass({

return (
<div>
<PageHeader title={title} experimental>
<PageHeader title={title}>
<span>
Rules are a way of applying changes to messages in Graylog. A rule consists of a condition and a list{' '}
of actions.{' '}
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/web/rules/RulesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const RulesPage = React.createClass({
return (
<DocumentTitle title="Pipeline rules">
<span>
<PageHeader title="Pipeline Rules" experimental>
<PageHeader title="Pipeline Rules">
<span>
Rules are a way of applying changes to messages in Graylog. A rule consists of a condition and a list of actions.
Graylog evaluates the condition against a message and executes the actions if the condition is satisfied.
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/web/simulator/SimulatorPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const SimulatorPage = React.createClass({
return (
<DocumentTitle title="Simulate processing">
<div>
<PageHeader title="Simulate processing" experimental>
<PageHeader title="Simulate processing">
<span>
Processing messages can be complex. Use this page to simulate the result of processing an incoming
message using your current set of pipelines and rules.
Expand Down

0 comments on commit f682110

Please sign in to comment.